1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Add the --with-tcl=DIR option to the test/releasetest.tcl script.

FossilOrigin-Name: 4dda916a572bcb54c8cf3b81d965328632a722eb
This commit is contained in:
drh
2015-04-24 17:50:37 +00:00
parent 8ea5eca183
commit 0ef84d0e5e
3 changed files with 14 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
C Run\sfuzzershell\sas\spart\sof\sthe\svalgrindtest\smakefile\starget. C Add\sthe\s--with-tcl=DIR\soption\sto\sthe\stest/releasetest.tcl\sscript.
D 2015-04-24T16:53:03.100 D 2015-04-24T17:50:37.253
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in e25a3b8036f49bc0a08694b7a41ee0913d60f4e5 F Makefile.in e25a3b8036f49bc0a08694b7a41ee0913d60f4e5
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -814,7 +814,7 @@ F test/randexpr1.test eda062a97e60f9c38ae8d806b03b0ddf23d796df
F test/rdonly.test 64e2696c322e3538df0b1ed624e21f9a23ed9ff8 F test/rdonly.test 64e2696c322e3538df0b1ed624e21f9a23ed9ff8
F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8 F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8
F test/reindex.test 44edd3966b474468b823d481eafef0c305022254 F test/reindex.test 44edd3966b474468b823d481eafef0c305022254
F test/releasetest.tcl ca3390bad7c156c6d635e2b657332a5067f44acc F test/releasetest.tcl f649253610c8b0b0d63ad85b0d2961867d4f0ac0
F test/resolver01.test f4022acafda7f4d40eca94dbf16bc5fc4ac30ceb F test/resolver01.test f4022acafda7f4d40eca94dbf16bc5fc4ac30ceb
F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea
F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14 F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14
@@ -1253,7 +1253,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
P 98edc6152cdd935dc83c1330c088145e7adb9dd0 P 0bb96a037bd7179cb3a6137bb29827fc7d72ec3f
R 57cb1c15bd3f01264a7d78a199355194 R 490f17d8f0cbe5def4bfbb0990513b33
U drh U drh
Z 84cb54aeebcbf9196abb3e78dcce4413 Z 0a587d9a322583805c3550241286812f

View File

@@ -1 +1 @@
0bb96a037bd7179cb3a6137bb29827fc7d72ec3f 4dda916a572bcb54c8cf3b81d965328632a722eb

View File

@@ -18,6 +18,7 @@ optional) are:
--buildonly (Just build testfixture - do not run) --buildonly (Just build testfixture - do not run)
--dryrun (Print what would have happened) --dryrun (Print what would have happened)
--info (Show diagnostic info) --info (Show diagnostic info)
--with-tcl=DIR (Use TCL build at DIR)
The default value for --srcdir is the parent of the directory holding The default value for --srcdir is the parent of the directory holding
this script. this script.
@@ -355,7 +356,7 @@ proc run_test_suite {name testtarget config} {
set cflags [expr {$::MSVC ? "-Zi" : "-g"}] set cflags [expr {$::MSVC ? "-Zi" : "-g"}]
set opts "" set opts ""
set title ${name}($testtarget) set title ${name}($testtarget)
set configOpts "" set configOpts $::WITHTCL
regsub -all {#[^\n]*\n} $config \n config regsub -all {#[^\n]*\n} $config \n config
foreach arg $config { foreach arg $config {
@@ -486,6 +487,7 @@ proc process_options {argv} {
set ::DRYRUN 0 set ::DRYRUN 0
set ::EXEC exec set ::EXEC exec
set ::TRACE 0 set ::TRACE 0
set ::WITHTCL {}
set config {} set config {}
set platform $::tcl_platform(os)-$::tcl_platform(machine) set platform $::tcl_platform(os)-$::tcl_platform(machine)
@@ -560,6 +562,10 @@ proc process_options {argv} {
} }
} }
-with-tcl=* {
set ::WITHTCL -$x
}
-D* - -D* -
-O* - -O* -
-enable-* - -enable-* -