| Index: tools/toolchain_tester/torture_test.py
|
| diff --git a/tools/toolchain_tester/torture_test.py b/tools/toolchain_tester/torture_test.py
|
| index 3e29934cff4340dd76db84ec40172ae60606a4fb..ab9ed2a1d028b03be8cea8d7d55a726398f6d0c5 100755
|
| --- a/tools/toolchain_tester/torture_test.py
|
| +++ b/tools/toolchain_tester/torture_test.py
|
| @@ -92,6 +92,11 @@ def run_torture(status, compiler, platform, extra_args):
|
| if compiler == 'pnacl':
|
| # O3_O0 is clang -O3 followed by pnacl-translate -O0
|
| optmodes = ['O0', 'O3', 'O0_O0', 'O3_O0']
|
| + if platform == 'x86-32':
|
| + # Add some extra Subzero configurations.
|
| + optmodes.extend(['O3_sz', 'O3_O0_sz'])
|
| + # TODO(stichnot): Consider pruning some configurations if the tests run
|
| + # too long.
|
| else:
|
| optmodes = ['O0', 'O3']
|
| for optmode in optmodes:
|
|
|