From: drh Date: Fri, 24 Apr 2015 17:50:37 +0000 (+0000) Subject: Add the --with-tcl=DIR option to the test/releasetest.tcl script. X-Git-Tag: version-3.8.10~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ef84d0e5ebad2d77bf22fa59d7d29b8b7d7f7aa;p=thirdparty%2Fsqlite.git Add the --with-tcl=DIR option to the test/releasetest.tcl script. FossilOrigin-Name: 4dda916a572bcb54c8cf3b81d965328632a722eb --- diff --git a/manifest b/manifest index 8bdf9339eb..57b6009321 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Run\sfuzzershell\sas\spart\sof\sthe\svalgrindtest\smakefile\starget. -D 2015-04-24T16:53:03.100 +C Add\sthe\s--with-tcl=DIR\soption\sto\sthe\stest/releasetest.tcl\sscript. +D 2015-04-24T17:50:37.253 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in e25a3b8036f49bc0a08694b7a41ee0913d60f4e5 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -814,7 +814,7 @@ F test/randexpr1.test eda062a97e60f9c38ae8d806b03b0ddf23d796df F test/rdonly.test 64e2696c322e3538df0b1ed624e21f9a23ed9ff8 F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8 F test/reindex.test 44edd3966b474468b823d481eafef0c305022254 -F test/releasetest.tcl ca3390bad7c156c6d635e2b657332a5067f44acc +F test/releasetest.tcl f649253610c8b0b0d63ad85b0d2961867d4f0ac0 F test/resolver01.test f4022acafda7f4d40eca94dbf16bc5fc4ac30ceb F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14 @@ -1253,7 +1253,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 98edc6152cdd935dc83c1330c088145e7adb9dd0 -R 57cb1c15bd3f01264a7d78a199355194 +P 0bb96a037bd7179cb3a6137bb29827fc7d72ec3f +R 490f17d8f0cbe5def4bfbb0990513b33 U drh -Z 84cb54aeebcbf9196abb3e78dcce4413 +Z 0a587d9a322583805c3550241286812f diff --git a/manifest.uuid b/manifest.uuid index 64fbb318e4..8fbf34353f 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -0bb96a037bd7179cb3a6137bb29827fc7d72ec3f \ No newline at end of file +4dda916a572bcb54c8cf3b81d965328632a722eb \ No newline at end of file diff --git a/test/releasetest.tcl b/test/releasetest.tcl index f9eb96c2a6..9cd30e195d 100644 --- a/test/releasetest.tcl +++ b/test/releasetest.tcl @@ -18,6 +18,7 @@ optional) are: --buildonly (Just build testfixture - do not run) --dryrun (Print what would have happened) --info (Show diagnostic info) + --with-tcl=DIR (Use TCL build at DIR) The default value for --srcdir is the parent of the directory holding this script. @@ -355,7 +356,7 @@ proc run_test_suite {name testtarget config} { set cflags [expr {$::MSVC ? "-Zi" : "-g"}] set opts "" set title ${name}($testtarget) - set configOpts "" + set configOpts $::WITHTCL regsub -all {#[^\n]*\n} $config \n config foreach arg $config { @@ -486,6 +487,7 @@ proc process_options {argv} { set ::DRYRUN 0 set ::EXEC exec set ::TRACE 0 + set ::WITHTCL {} set config {} set platform $::tcl_platform(os)-$::tcl_platform(machine) @@ -560,6 +562,10 @@ proc process_options {argv} { } } + -with-tcl=* { + set ::WITHTCL -$x + } + -D* - -O* - -enable-* -