diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-11 14:40:30 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-11 14:40:30 -0800 |
commit | 7ea5dd5b4ecba3f678fe846e78560fbd9d3b3d1c (patch) | |
tree | 913626be2042a5e49191dd390c6a72cc39ab12a6 /tests | |
parent | 5f8bd77f5ceab80f09bf8f200eb541644c41f93d (diff) |
focus on ta2 i64=1 tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runner.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/runner.py b/tests/runner.py index 475895fe..0efea69b 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -64,7 +64,7 @@ class RunnerCore(unittest.TestCase): global LLVM_OPT_OPTS if handpicked is None: - handpicked = True # Not even TA2 can withstand instruction combining + handpicked = Settings.USE_TYPED_ARRAYS != 2 # TA2 should be able to withstand instruction combining, and we do use I64_MODE = 1 there LLVM_OPT_OPTS = pick_llvm_opts(optimization_level, handpicked, quantum_size=Settings.QUANTUM_SIZE) @@ -4306,12 +4306,12 @@ TT = %s ''' % (fullname, fullname, fullname, compiler, llvm_opts, embetter, quantum_size, typed_arrays, fullname)) return TT - for llvm_opts in [0,1]: + for llvm_opts in [1]: for name, compiler, quantum, embetter, typed_arrays in [ - ('clang', CLANG, 1, 0, 0), - ('clang', CLANG, 4, 0, 0), - ('clang', CLANG, 1, 1, 1), - ('clang', CLANG, 4, 1, 1), + #('clang', CLANG, 1, 0, 0), + #('clang', CLANG, 4, 0, 0), + #('clang', CLANG, 1, 1, 1), + #('clang', CLANG, 4, 1, 1), ('clang', CLANG, 4, 1, 2), ]: fullname = '%s_%d_%d%s%s' % ( |