summaryrefslogtreecommitdiff
path: root/deps/v8/tools/run-deopt-fuzzer.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/run-deopt-fuzzer.py')
-rwxr-xr-xdeps/v8/tools/run-deopt-fuzzer.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/deps/v8/tools/run-deopt-fuzzer.py b/deps/v8/tools/run-deopt-fuzzer.py
index a6fdf3187d..ec79cbb51d 100755
--- a/deps/v8/tools/run-deopt-fuzzer.py
+++ b/deps/v8/tools/run-deopt-fuzzer.py
@@ -66,6 +66,8 @@ SUPPORTED_ARCHS = ["android_arm",
"android_ia32",
"arm",
"ia32",
+ "ppc",
+ "ppc64",
"mipsel",
"nacl_ia32",
"nacl_x64",
@@ -377,7 +379,8 @@ def Execute(arch, mode, args, options, suites, workspace):
True, # No sorting of test cases.
0, # Don't rerun failing tests.
0, # No use of a rerun-failing-tests maximum.
- False) # No predictable mode.
+ False, # No predictable mode.
+ False) # No no_harness mode.
# Find available test suites and read test cases from them.
variables = {
@@ -394,6 +397,7 @@ def Execute(arch, mode, args, options, suites, workspace):
"tsan": False,
"msan": False,
"dcheck_always_on": options.dcheck_always_on,
+ "byteorder": sys.byteorder,
}
all_tests = []
num_tests = 0