OLD | NEW |
1 | 1 |
2 | 2 |
3 set testdir [file dirname $argv0] | 3 set testdir [file dirname $argv0] |
4 source $testdir/tester.tcl | 4 source $testdir/tester.tcl |
5 source $testdir/fts3_common.tcl | 5 source $testdir/fts3_common.tcl |
6 source $testdir/malloc_common.tcl | 6 source $testdir/malloc_common.tcl |
7 set ::testprefix fts4merge2 | 7 set ::testprefix fts4merge2 |
8 | 8 |
9 # If SQLITE_ENABLE_FTS3 is defined, omit this file. | 9 # If SQLITE_ENABLE_FTS3 is defined, omit this file. |
10 ifcapable !fts3 { | 10 ifcapable !fts3 { |
(...skipping 18 matching lines...) Expand all Loading... |
29 if {$iFail<100} {set iFail 803} | 29 if {$iFail<100} {set iFail 803} |
30 faultsim_restore_and_reopen | 30 faultsim_restore_and_reopen |
31 } -body { | 31 } -body { |
32 execsql { INSERT INTO t1(t1) VALUES('merge=1,2') } | 32 execsql { INSERT INTO t1(t1) VALUES('merge=1,2') } |
33 execsql { INSERT INTO t1(t1) VALUES('merge=1,2') } | 33 execsql { INSERT INTO t1(t1) VALUES('merge=1,2') } |
34 } -test { | 34 } -test { |
35 faultsim_test_result {0 {}} | 35 faultsim_test_result {0 {}} |
36 } | 36 } |
37 | 37 |
38 finish_test | 38 finish_test |
OLD | NEW |