1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Fix typo in backcompat.test.

FossilOrigin-Name: 6a0cbb272c3f0c1dfdeed381ba92f2f2f16ae824
This commit is contained in:
dan
2010-08-20 12:43:01 +00:00
parent a3e63c4a74
commit 4f05e38f09
4 changed files with 11 additions and 11 deletions

View File

@ -67,8 +67,8 @@ proc do_multiclient_test {varname script} {
# down by closing the channel.
proc launch_testfixture {{prg ""}} {
write_main_loop
if {$prg eq ""} { set prg [file join . [info nameofexec]] }
if {$prg eq ""} { set prg [file join . testfixture] }
if {$prg eq ""} { set prg [info nameofexec] }
if {$prg eq ""} { set prg testfixture }
if {[file tail $prg]==$prg} { set prg [file join . $prg] }
set chan [open "|$prg tf_main.tcl" r+]
fconfigure $chan -buffering line