[js-fuzzer] Extend supported executables

No-Try: true
Bug: chromium:1142437
Change-Id: Icba7a00ac996c0f81a67e0141496829e657a9a64
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2539917
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Auto-Submit: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71203}
This commit is contained in:
Michael Achenbach 2020-11-16 13:55:01 +01:00 committed by Commit Bot
parent bc0a32beab
commit 5488c686b1

View File

@ -163,9 +163,11 @@ function main() {
app_name = app_name.substr(0, app_name.length - 4);
}
if (app_name === 'd8' || app_name === 'v8_foozzie.py') {
// V8 supports running the raw d8 executable or the differential fuzzing
// harness 'foozzie'.
if (app_name === 'd8' ||
app_name === 'v8_simple_inspector_fuzzer' ||
app_name === 'v8_foozzie.py') {
// V8 supports running the raw d8 executable, the inspector fuzzer or
// the differential fuzzing harness 'foozzie'.
settings.engine = 'V8';
} else if (app_name === 'ch') {
settings.engine = 'chakra';