diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-08 10:22:16 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-08 10:22:16 -0800 |
commit | a3fa0380155176e4d60159ccc5f2a264268863ac (patch) | |
tree | 453092e7b4772a76258eb3fa9809e070be08500d /tests/runner.py | |
parent | 82ddb0715d1aa655841223cff314a5377fe10aa5 (diff) |
deprecate USE_TYPED_ARRAYS=1 and QUANTUM_SIZE=1
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/runner.py b/tests/runner.py index 719cf5f4..cdc8684b 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -445,7 +445,7 @@ if 'benchmark' not in str(sys.argv) and 'sanity' not in str(sys.argv) and 'brows if len(sys.argv) == 2 and 'ALL.' in sys.argv[1]: ignore, test = sys.argv[1].split('.') print 'Running all test modes on test "%s"' % test - sys.argv = [sys.argv[0], 'default.'+test, 'o1.'+test, 'o2.'+test, 'asm2.'+test, 's_0_0.'+test, 's_0_1.'+test, 's_0_1_q1.'+test, 's_1_0.'+test, 's_1_1.'+test, 's_1_1_q1.'+test] + sys.argv = [sys.argv[0], 'default.'+test, 'o1.'+test, 'o2.'+test, 'asm2.'+test, 's_0_0.'+test, 's_0_1.'+test, 's_1_0.'+test, 's_1_1.'+test] class T(RunnerCore): # Short name, to make it more fun to use manually on the commandline ## Does a complete test - builds, runs, checks output, etc. @@ -8529,8 +8529,6 @@ TT = %s # Make custom runs with various options for compiler, quantum, embetter, typed_arrays, llvm_opts in [ - (CLANG, 1, 1, 0, 0), - (CLANG, 1, 1, 1, 1), (CLANG, 4, 0, 0, 0), (CLANG, 4, 0, 0, 1), (CLANG, 4, 1, 1, 0), |