]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Provide the new "-config CONFIG" option to the test/releasetest.tcl script,
authordrh <drh@noemail.net>
Fri, 10 Oct 2014 17:44:03 +0000 (17:44 +0000)
committerdrh <drh@noemail.net>
Fri, 10 Oct 2014 17:44:03 +0000 (17:44 +0000)
which allows one to run a single test configuration selected by name.

FossilOrigin-Name: d479e32be205f6cd0474f002282eae6eec613f36

manifest
manifest.uuid
test/releasetest.tcl

index 52085777dfc1a299c015871296fe154bf54e33a6..0af18811ed3f6517c1a7a7f85c0285bd9972b5b9 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sthe\sestimated\snumber\sof\soutput\srows\sto\sthe\sEXPLAIN\sQUERY\sPLAN\soutput\nif\scompiled\swith\sSQLITE_EXPLAIN_ESTIMATED_ROWS.\s\sThis\sfeature\sis\soff\sby\ndefault\sfor\sthe\stime\sbeing.
-D 2014-10-10T17:20:39.349
+C Provide\sthe\snew\s"-config\sCONFIG"\soption\sto\sthe\stest/releasetest.tcl\sscript,\nwhich\sallows\sone\sto\srun\sa\ssingle\stest\sconfiguration\sselected\sby\sname.
+D 2014-10-10T17:44:03.334
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in cf57f673d77606ab0f2d9627ca52a9ba1464146a
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -783,7 +783,7 @@ F test/rdonly.test dd30a4858d8e0fbad2304c2bd74a33d4df36412a
 F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8
 F test/reindex.test 44edd3966b474468b823d481eafef0c305022254
 F test/releasetest.mk 2eced2f9ae701fd0a29e714a241760503ccba25a
-F test/releasetest.tcl a0df0dfc5e3ee83ade87b9cc96db41b52d590b9e
+F test/releasetest.tcl aa7aea9bacd0d76b3d9d5754bb1846d10103af57
 F test/resolver01.test 33abf37ff8335e6bf98f2b45a0af3e06996ccd9a
 F test/rollback.test e9504a009a202c3ed711da2e6879ff60c5a4669c
 F test/rowhash.test 0bc1d31415e4575d10cacf31e1a66b5cc0f8be81
@@ -1203,7 +1203,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P beea1efc3a49cad08087fcbb18dbce71c873fe57
-R a0896f7681cce645a858136a6e4bda47
+P daa8314fba9dc3c4f5e7fbda42c97604fbfc4392
+R d16c504828c83cfa33bdf3d0eaba9ed0
 U drh
-Z 8fddc2c9d3b88cabdf0b2692b84338ef
+Z b39929cd4032458ed60510f729a1a0e8
index 10d95ef678923ed81595d811ffb8c212e43b2c20..fd80ff2ddf7146a007a087d2c82fa54d5388a1e5 100644 (file)
@@ -1 +1 @@
-daa8314fba9dc3c4f5e7fbda42c97604fbfc4392
\ No newline at end of file
+d479e32be205f6cd0474f002282eae6eec613f36
\ No newline at end of file
index eb2e44001313724d7232f080f2de5cdcfef34581..99790d324804a452db1b9283051253e437b5be34 100644 (file)
@@ -13,6 +13,7 @@ optional) are:
     -makefile PATH-TO-MAKEFILE           (default "releasetest.mk")
     -platform PLATFORM                   (see below)
     -quick    BOOLEAN                    (default "0")
+    -config   CONFIGNAME                 (Run only CONFIGNAME)
 
 The default value for -makefile is "./releasetest.mk".
 
@@ -292,6 +293,7 @@ proc run_test_suite {name testtarget config} {
 proc process_options {argv} {
   set ::MAKEFILE releasetest.mk                       ;# Default value
   set ::QUICK    0                                    ;# Default value
+  set config {}
   set platform $::tcl_platform(os)-$::tcl_platform(machine)
 
   for {set i 0} {$i < [llength $argv]} {incr i} {
@@ -310,6 +312,11 @@ proc process_options {argv} {
         incr i
         set ::QUICK [lindex $argv $i]
       }
+
+      -config {
+        incr i
+        set config [lindex $argv $i]
+      }
   
       default {
         puts stderr ""
@@ -333,7 +340,11 @@ proc process_options {argv} {
     exit
   }
 
-  set ::CONFIGLIST $::Platforms($platform)
+  if {$config!=""} {
+    set ::CONFIGLIST $config
+  } else {
+    set ::CONFIGLIST $::Platforms($platform)
+  }
   puts "Running the following configurations for $platform:"
   puts "    [string trim $::CONFIGLIST]"
 }