diff options
author | stephan <stephan@noemail.net> | 2022-10-13 08:03:31 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-10-13 08:03:31 +0000 |
commit | d85d08398dbd06f6d8e1a96a58e6f538090c0fb9 (patch) | |
tree | 984b29815c615ab53dae9d2876ac1d09612195bf /ext/wasm/testing1.js | |
parent | 1ffb6be1195c592e6c85d57603984b1f36bfde62 (diff) | |
download | sqlite-d85d08398dbd06f6d8e1a96a58e6f538090c0fb9.tar.gz sqlite-d85d08398dbd06f6d8e1a96a58e6f538090c0fb9.zip |
Port the first 180-odd unit tests from testing1.* into the new tester1.*. Fix a stray-keystroke-induced typo which broke pstack.allocChunks().
FossilOrigin-Name: ef689e33e464829f5cbe4ca24a53d9dba59abe74d3d80a37a91b93a4eccccf2d
Diffstat (limited to 'ext/wasm/testing1.js')
-rw-r--r-- | ext/wasm/testing1.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/wasm/testing1.js b/ext/wasm/testing1.js index 5ef6d15b0..6bda58773 100644 --- a/ext/wasm/testing1.js +++ b/ext/wasm/testing1.js @@ -94,7 +94,6 @@ "INSERT INTO t(a,b) VALUES(1,2),(3,4),", "(?,?),('blob',X'6869')"/*intentionally missing semicolon to test for off-by-one bug in string-to-WASM conversion*/], - multi: true, saveSql: list, bind: [5,6] }); @@ -258,7 +257,6 @@ "insert into foo.bar(a) values(1),(2),(3);", "select a from foo.bar order by a;" ].join('')), - multi: true, rowMode: 0, resultRows }); @@ -1083,7 +1081,7 @@ }finally{ P.restore(stack); } -}/*testPstack()*/; + }/*testPstack()*/; const clearKvvfs = function(){ const sz = sqlite3.capi.sqlite3_web_kvvfs_size(); |