diff options
author | stephan <stephan@noemail.net> | 2022-11-30 05:27:36 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-11-30 05:27:36 +0000 |
commit | ad4f7828153e6b80c0fceabb1a9ece702172b836 (patch) | |
tree | ea2ebea5c2bdb36a24e59026181f066bf31c7b7b /ext/wasm/tester1.c-pp.js | |
parent | d0945f4638f342daf4c84ab5a03449137435dd36 (diff) | |
download | sqlite-ad4f7828153e6b80c0fceabb1a9ece702172b836.tar.gz sqlite-ad4f7828153e6b80c0fceabb1a9ece702172b836.zip |
Refactor a significant chunk of the OPFS sqlite3_vfs init code into sqlite3.VfsHelper, and internal-use-only API encapsulating code relevant to creating new VFSes in JS. Intended to assist in pending experimentation with an alternative OPFS VFS.
FossilOrigin-Name: e25d7b080a807e35b32cb885ea75b384130e5c6e936dfef783c5b45d9bfe77d8
Diffstat (limited to 'ext/wasm/tester1.c-pp.js')
-rw-r--r-- | ext/wasm/tester1.c-pp.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/wasm/tester1.c-pp.js b/ext/wasm/tester1.c-pp.js index 2fc675269..0c32c1b07 100644 --- a/ext/wasm/tester1.c-pp.js +++ b/ext/wasm/tester1.c-pp.js @@ -1867,6 +1867,9 @@ self.sqlite3InitModule = sqlite3InitModule; } importScripts(sqlite3Js); } + self.sqlite3InitModule.__isUnderTest = + true /* disables certain API-internal cleanup so that we can + test internal APIs from here */; self.sqlite3InitModule({ print: log, printErr: error |