Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index afc9d83fa3c769cef91ad1c1575ec4199bb54d4c..8627319359418391efbbeb9e044365e7b2731d81 100755 |
--- a/tools/run-tests.py |
+++ b/tools/run-tests.py |
@@ -531,7 +531,8 @@ def Execute(arch, mode, args, options, suites, workspace): |
# TODO(all): Combine "simulator" and "simulator_run". |
simulator_run = not options.dont_skip_simulator_slow_tests and \ |
- arch in ['arm64', 'arm', 'mipsel', 'mips', 'mips64el'] and \ |
+ arch in ['arm64', 'arm', 'mipsel', 'mips', 'mips64el', \ |
+ 'ppc', 'ppc64'] and \ |
ARCH_GUESS and arch != ARCH_GUESS |
# Find available test suites and read test cases from them. |
variables = { |
@@ -549,6 +550,7 @@ def Execute(arch, mode, args, options, suites, workspace): |
"tsan": options.tsan, |
"msan": options.msan, |
"dcheck_always_on": options.dcheck_always_on, |
+ "byteorder": sys.byteorder, |
} |
all_tests = [] |
num_tests = 0 |