aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/tester1.c-pp.js
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2024-07-13 00:55:55 +0000
committerstephan <stephan@noemail.net>2024-07-13 00:55:55 +0000
commitf7623a0871c51b8680057e0682b08dc52bfa27f2 (patch)
tree8f8c9110de897ac57ba645ab508dca9439b888ca /ext/wasm/tester1.c-pp.js
parent8ee747dda55887775417e13882ffed29868a0865 (diff)
downloadsqlite-f7623a0871c51b8680057e0682b08dc52bfa27f2.tar.gz
sqlite-f7623a0871c51b8680057e0682b08dc52bfa27f2.zip
Rename the new opfs-sahpool init-retry flag to the suitably descriptive, and suitably onerous, forceReinitIfPreviouslyFailed, based on feedback.
FossilOrigin-Name: c9f0a6090258534a3d81066df5610229183a8457fc60d5034b4b94d9a29796e4
Diffstat (limited to 'ext/wasm/tester1.c-pp.js')
-rw-r--r--ext/wasm/tester1.c-pp.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/wasm/tester1.c-pp.js b/ext/wasm/tester1.c-pp.js
index 5d24daf15..1fcc9ae7c 100644
--- a/ext/wasm/tester1.c-pp.js
+++ b/ext/wasm/tester1.c-pp.js
@@ -3190,9 +3190,10 @@ globalThis.sqlite3InitModule = sqlite3InitModule;
T.assert(cErr === await inst(conf2).catch(e=>e),
"Init result is cached even if it failed");
- /* Ensure that the forceReinitIfFailed fallback bypasses the VFS init cache... */
+ /* Ensure that the forceReinitIfPreviouslyFailed fallback bypasses
+ the VFS init cache... */
cErr = u3 = undefined;
- conf2.forceReinitIfFailed = true;
+ conf2.forceReinitIfPreviouslyFailed = true;
conf2.verbosity = 3;
const P3b = await inst(conf2).then(u=>u3 = u).catch((e)=>cErr=e);
T.assert(undefined === cErr)