diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-14 13:54:42 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-14 13:54:42 -0700 |
commit | 55013f30bce701468b5dcdd00dd0df3d53c75c33 (patch) | |
tree | 54f7e0bc63285ed6f91db490e0ba9a59b138e660 | |
parent | 323bd5206e8b49d48e47cdd69d4b47b38aa384b9 (diff) |
sqlite test tweaks
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 4c7be5ff..f8d281ad 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -3087,6 +3087,7 @@ if 'benchmark' not in str(sys.argv): #build_ll_hook=self.do_autodebug) def test_sqlite(self): + # gcc -O3 -I/home/alon/Dev/emscripten/tests/sqlite -ldl src.c global QUANTUM_SIZE, OPTIMIZE, RELOOP, USE_TYPED_ARRAYS if QUANTUM_SIZE == 1 or USE_TYPED_ARRAYS == 2: return self.skip('TODO FIXME') RELOOP = 0 # too slow @@ -3099,6 +3100,7 @@ if 'benchmark' not in str(sys.argv): global CORRECT_ROUNDINGS; CORRECT_ROUNDINGS = 0 global SAFE_HEAP; SAFE_HEAP = 0 # uses time.h to set random bytes, other stuff global DISABLE_EXCEPTIONS; DISABLE_EXCEPTIONS = 1 + global FAST_MEMORY; FAST_MEMORY = 4*1024*1024 global INVOKE_RUN; INVOKE_RUN = 0 # We append code that does run() ourselves |