diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-26 17:06:46 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-26 17:06:46 -0700 |
commit | 121f12727da4825a860284ae26c7b0603313765b (patch) | |
tree | f21c141f5964f98bcd80df4b5bb3613102d5d0e9 | |
parent | 36adf9c4448b42c16880fe57e939ecc5e4d03188 (diff) |
expose core SQLite API calls in sqlite test
-rw-r--r-- | tests/runner.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 2c0b3e72..b82cef80 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -3148,6 +3148,7 @@ if 'benchmark' not in str(sys.argv): global SAFE_HEAP; SAFE_HEAP = 0 # uses time.h to set random bytes, other stuff global DISABLE_EXCEPTION_CATCHING; DISABLE_EXCEPTION_CATCHING = 1 global FAST_MEMORY; FAST_MEMORY = 4*1024*1024 + global EXPORTED_FUNCTIONS; EXPORTED_FUNCTIONS = ['_main', '_sqlite3_open', '_sqlite3_close', '_sqlite3_exec', '_sqlite3_free', '_callback']; global INVOKE_RUN; INVOKE_RUN = 0 # We append code that does run() ourselves |