-C Modify\sthe\svalgrind\starget\sto\sbe\sconsistent\swith\sregard\sto\starget\ssuffixes.
-D 2015-01-07T18:19:09.561
+C In\sreleasetest.tcl,\scopy\scertain\scommand-line\sarguments\s(-g,\s-D...,\setc)\ndown\sinto\seach\stest\srun.
+D 2015-01-07T18:44:59.340
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 3a2b5f8356e11591b2a7b23ce444654424591d06
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
F test/rdonly.test dd30a4858d8e0fbad2304c2bd74a33d4df36412a
F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8
F test/reindex.test 44edd3966b474468b823d481eafef0c305022254
-F test/releasetest.tcl 64eaa07598cac0967311d5cacecba576ef4bc804
+F test/releasetest.tcl 8c0d89629ba78ebaf5a9f8323d7bfbe931e7bf08
F test/resolver01.test 33abf37ff8335e6bf98f2b45a0af3e06996ccd9a
F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea
F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 9b92a4d2b6585d5fdf20330e4138081df58960e9
-R 57542d62cffe2d566b148ef68993a058
-U mistachkin
-Z 0f5a5e7af0d0c3b98a248d1911e08a19
+P dc4aa7321262ace43d985a227ad052dfca7db6c7
+R 29f0edba48a2f5a2bdf9b5bce9d63229
+U drh
+Z 2d1cb7c03d7ff18e565521b6e31d33d6
for {set i 0} {$i < [llength $argv]} {incr i} {
set x [lindex $argv $i]
if {[regexp {^--[a-z]} $x]} {set x [string range $x 1 end]}
- switch -- $x {
+ switch -glob -- $x {
-srcdir {
incr i
set ::SRCDIR [file normalize [lindex $argv $i]]
}
exit
}
+ -g -
+ -D* -
+ -enable-* -
+ -disable-* -
+ *=* {
+ lappend ::EXTRACONFIG [lindex $argv $i]
+ }
default {
puts stderr ""
proc main {argv} {
# Process any command line options.
+ set ::EXTRACONFIG {}
process_options $argv
puts [string repeat * 79]
foreach {zConfig target} $::CONFIGLIST {
if {$::QUICK} {set target test}
if {$::BUILDONLY} {set target testfixture}
- set config_options $::Configs($zConfig)
+ set config_options [concat $::Configs($zConfig) $::EXTRACONFIG]
incr NTEST
run_test_suite $zConfig $target $config_options