Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: third_party/sqlite/src/test/fts4merge2.test

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698