diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-13 10:34:00 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-13 10:34:00 -0800 |
commit | c0152fe8f0f4860066a25075976d7a1036dfbc25 (patch) | |
tree | 097ed56b13089a43542f78dcb126a37b2f7018b2 | |
parent | 26e6371e489c1c53b7d1cdb6235a4188fc8ff5a9 (diff) |
disable i64=1 tests in q1
-rw-r--r-- | tests/runner.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 04bee917..f7a4d66f 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -368,9 +368,10 @@ if 'benchmark' not in str(sys.argv): self.do_run(src, output, force_c=True) def test_i64(self): - #for i64_mode in []: for i64_mode in [0,1]: if i64_mode == 0 and Settings.USE_TYPED_ARRAYS != 0: continue # Typed arrays truncate i64 + if i64_mode == 1 and Settings.QUANTUM_SIZE == 1: continue # TODO: i64 mode 1 for q1 + Settings.I64_MODE = i64_mode src = ''' #include <stdio.h> @@ -394,6 +395,8 @@ if 'benchmark' not in str(sys.argv): ''' self.do_run(src, '*245127260211081,579378795077769,808077213656969,16428841631881,791648372025088*\n*13.00,6.00,3.00,*3*') + if Settings.QUANTUM_SIZE == 1: return self.skip('TODO: i64 mode 1 for q1') + # Stuff that only works in i64_mode = 1 Settings.I64_MODE = 1 |