diff options
author | stephan <stephan@noemail.net> | 2022-09-30 20:35:37 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-09-30 20:35:37 +0000 |
commit | e67a0f40e419f4945d8157cb047ae302bf1f2852 (patch) | |
tree | a31e7863c9e6867e74ce53be5545eef1e5e02c9a /ext/wasm/testing2.js | |
parent | d18f1bbfe06e40713de908cd894d9857f6c11606 (diff) | |
download | sqlite-e67a0f40e419f4945d8157cb047ae302bf1f2852.tar.gz sqlite-e67a0f40e419f4945d8157cb047ae302bf1f2852.zip |
Add JS wrapper for sqlite3_exec() which knows how to handle a JS callback. Add some console.error() reporting of module-load failures, as they otherwise often get silently swallowed up by the loader's mechanisms. Add 'flexible-string' JS-to-WASM argument converter which performs more X-to-string conversions than the 'string' arg converter does.
FossilOrigin-Name: 96818aa83f4ccc574f558231249ecbdd39763b4351cf4cf6d33f53774a3ee5e6
Diffstat (limited to 'ext/wasm/testing2.js')
-rw-r--r-- | ext/wasm/testing2.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/wasm/testing2.js b/ext/wasm/testing2.js index 986e683de..7163fe120 100644 --- a/ext/wasm/testing2.js +++ b/ext/wasm/testing2.js @@ -247,7 +247,9 @@ runOneTest('close',{unlink:true},function(ev){ ev = ev.result; T.assert(undefined === ev.filename); + logHtml('warning',"This is the final test."); }); + logHtml('warning',"Finished posting tests. Waiting on async results."); }; const runTests = function(){ |