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

Side by Side Diff: third_party/sqlite/sqlite-src-3070603/tool/omittest.tcl

Issue 826543003: [sql] Import reference version of SQLite 3.7.6.3. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: gitignore forgot some files for me. Created 5 years, 11 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 set rcsid {$Id: omittest.tcl,v 1.8 2008/10/13 15:35:09 drh Exp $} 2 set rcsid {$Id: omittest.tcl,v 1.8 2008/10/13 15:35:09 drh Exp $}
3 3
4 # Documentation for this script. This may be output to stderr 4 # Documentation for this script. This may be output to stderr
5 # if the script is invoked incorrectly. 5 # if the script is invoked incorrectly.
6 set ::USAGE_MESSAGE { 6 set ::USAGE_MESSAGE {
7 This Tcl script is used to test the various compile time options 7 This Tcl script is used to test the various compile time options
8 available for omitting code (the SQLITE_OMIT_xxx options). It 8 available for omitting code (the SQLITE_OMIT_xxx options). It
9 should be invoked as follows: 9 should be invoked as follows:
10 10
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 # Try the ENABLE/DISABLE symbols one at a time. 277 # Try the ENABLE/DISABLE symbols one at a time.
278 # We don't do them all at once since some are conflicting. 278 # We don't do them all at once since some are conflicting.
279 foreach sym $::ENABLE_SYMBOLS { 279 foreach sym $::ENABLE_SYMBOLS {
280 set dirname "test_[string range $sym 7 end]" 280 set dirname "test_[string range $sym 7 end]"
281 run_quick_test $dirname $sym 281 run_quick_test $dirname $sym
282 } 282 }
283 } 283 }
284 } 284 }
285 285
286 main $argv 286 main $argv
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698