| Index: tools/run-tests.py
|
| diff --git a/tools/run-tests.py b/tools/run-tests.py
|
| index 21a2c3b4ffe5ffa96bb11711275ce39e43ddbaee..f0056980a58ea99a7f0c48e6b1efc566b75db420 100755
|
| --- a/tools/run-tests.py
|
| +++ b/tools/run-tests.py
|
| @@ -500,7 +500,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 = {
|
| @@ -518,6 +519,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
|
|
|