Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: tools/toolchain_tester/torture_test.py

Issue 1026243002: Add Subzero to test scripts. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Formatting Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..8d58652a9d0f2bdea4166e9c48c3adce9cedbd6f 100755
--- a/tools/toolchain_tester/torture_test.py
+++ b/tools/toolchain_tester/torture_test.py
@@ -92,6 +92,9 @@ 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.
Jim Stichnoth 2015/03/25 01:17:09 This adds two new configurations, 50% more runtime
jvoung (off chromium) 2015/03/25 18:41:38 Maybe... but O0f_O2b might be the weirder config.
Jim Stichnoth 2015/03/25 20:13:17 OK. For now, I just left a TODO about possible pr
+ optmodes.extend(['O3_sz', 'O3_O0_sz'])
else:
optmodes = ['O0', 'O3']
for optmode in optmodes:
« tools/toolchain_tester/toolchain_config.py ('K') | « tools/toolchain_tester/toolchain_config.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698