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

Fix the --dryrun option on the releasetest.tcl script.

FossilOrigin-Name: e565e0261501e4c21e4ad3d12f9f5b24c761bf96
This commit is contained in:
dan
2015-11-02 20:52:20 +00:00
parent e9e1505b3c
commit d08a63ab62
3 changed files with 9 additions and 9 deletions

View File

@@ -408,7 +408,7 @@ proc count_tests_and_errors {logfile rcVar errmsgVar} {
proc run_slave_test {} {
# Read global vars configuration from stdin.
set V [gets stdin]
foreach {::TRACE} $V {}
foreach {::TRACE ::MSVC ::DRYRUN} $V {}
# Read the test-suite configuration from stdin.
set T [gets stdin]
@@ -521,7 +521,7 @@ proc run_all_test_suites {alltests} {
set fd [open "|[info nameofexecutable] [info script] --slave" r+]
fconfigure $fd -blocking 0
fileevent $fd readable [list slave_fileevent $fd $T $tm1]
puts $fd [list $::TRACE]
puts $fd [list $::TRACE $::MSVC $::DRYRUN]
puts $fd [list {*}$T]
flush $fd
}