Lines Matching refs:test
36 1 test.db test.db
37 2 file:test.db test.db
38 3 file://PWD/test.db test.db
39 4 file:PWD/test.db test.db
40 5 file:test.db?mork=1 test.db
41 6 file:test.db?mork=1&tonglor=2 test.db
42 7 file:test.db?mork=1#boris test.db
43 8 file:test.db#boris test.db
44 9 test.db#boris test.db#boris
45 10 file:test%2Edb test.db
47 12 http:test.db http:test.db
48 13 file:test.db%00extra test.db
51 15 test.db?mork=1#boris test.db?mork=1#boris
52 16 file://localhostPWD/test.db%3Fhello test.db?hello
73 # (ADS) named "test.db" for the "http" file, causing some spurious
74 # failures of this test.
114 1 file:test.db?hello=world {hello world}
115 2 file:test.db?hello&world {hello {} world {}}
116 3 file:test.db?hello=1&world=2&vfs=tvfs {hello 1 world 2 vfs tvfs}
117 4 file:test.db?hello=1&world=2&vfs=tvfs2 {}
118 5 file:test.db?%68%65%6C%6C%6F=%77%6F%72%6C%64 {hello world}
122 9 file:test.db?%00hello=world&xyz=abc {xyz abc}
123 10 file:test.db?hello=%00world&xyz= {hello {} xyz {}}
124 11 file:test.db?=#ravada {}
125 12 file:test.db?&&&&&&&&hello=world&&&&&&& {hello world}
127 13 test.db?&&&&&&&&hello=world&&&&&&& {}
128 14 http:test.db?hello&world {}
157 list [catch { sqlite3 db "file:test.db?vfs=nosuchvfs" } msg] $msg
169 forcedelete test.db
174 list [catch {sqlite3 db "file:test.db?mode=$mode"} msg] $msg
178 forcedelete test.db
179 sqlite3 db test.db
186 sqlite3 db "file:test.db?mode=$mode"
193 list [catch {sqlite3 db "file:test.db?mode=$mode" -readonly 1} msg] $msg
208 forcedelete test.db
211 sqlite3 db2 test.db
215 sqlite3 db "file:test.db?$options"
230 list [catch {sqlite3 db "file:test.db?mode=rc"} msg] $msg
233 list [catch {sqlite3 db "file:test.db?cache=public"} msg] $msg
270 eval forcedelete [glob test.db*]
272 sqlite3 db file:test.db1?vfs=tvfs1
274 ATTACH 'file:test.db2?vfs=tvfs2' AS aux;
285 } {test.db1 test.db1-journal test.db1-wal}
289 } {test.db2 test.db2-journal test.db2-wal}
301 1 "file://localhost/PWD/test.db" {not an error}
302 2 "file:///PWD/test.db" {not an error}
303 3 "file:/PWD/test.db" {not an error}
304 4 "file://l%6Fcalhost/PWD/test.db" {invalid uri authority: l%6Fcalhost}
305 5 "file://lbcalhost/PWD/test.db" {invalid uri authority: lbcalhost}
306 6 "file://x/PWD/test.db" {invalid uri authority: x}
322 forcedelete test.db test.db2
324 sqlite3 db test.db
328 ATTACH 'test.db2' AS aux;
335 sqlite3 db file:test.db?mode=ro
336 execsql { ATTACH 'file:test.db2?mode=rw' AS aux }