summaryrefslogtreecommitdiff
path: root/test/uri.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/uri.test')
-rw-r--r--test/uri.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/uri.test b/test/uri.test
index af1ad67..dd78783 100644
--- a/test/uri.test
+++ b/test/uri.test
@@ -238,12 +238,14 @@ ifcapable wal {
tvfs1 script tvfs1_callback
proc tvfs1_callback {method filename args} {
set ::T1([file tail $filename]) 1
+ return SQLITE_OK
}
testvfs tvfs2
tvfs2 filter {xOpen xDelete xAccess xFullPathname}
tvfs2 script tvfs2_callback
proc tvfs2_callback {method filename args} {
set ::T2([file tail $filename]) 1
+ return SQLITE_OK
}
catch {db close}