diff options
author | jenn <jenn> | 1999-06-19 00:57:57 (GMT) |
---|---|---|
committer | jenn <jenn> | 1999-06-19 00:57:57 (GMT) |
commit | fd32291979f860c44db1c144d7c12edf9f31646f (patch) | |
tree | a24b46aae160ff67196cf37a23f31bed129ba31d | |
parent | e0116ad4b99882eca58af97a29d410f3210d54ea (diff) | |
download | tcl-fd32291979f860c44db1c144d7c12edf9f31646f.zip tcl-fd32291979f860c44db1c144d7c12edf9f31646f.tar.gz tcl-fd32291979f860c44db1c144d7c12edf9f31646f.tar.bz2 |
Merged with tk defs.tcl file
-rw-r--r-- | tests/defs.tcl | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/tests/defs.tcl b/tests/defs.tcl index d5a6913..839d358 100644 --- a/tests/defs.tcl +++ b/tests/defs.tcl @@ -11,7 +11,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: defs.tcl,v 1.5 1999/04/21 21:50:30 rjohnson Exp $ +# RCS: @(#) $Id: defs.tcl,v 1.6 1999/06/19 00:57:57 jenn Exp $ # Initialize wish shell @@ -19,9 +19,7 @@ if {[info exists tk_version]} { tk appname tktest wm title . tktest } else { - # Ensure that we have a minimal auto_path so we don't pick up extra junk. - set auto_path [list [info library]] } @@ -980,22 +978,20 @@ if {[info exists tk_version]} { cleanupbg } - # The following code segment cannot be run on Windows in Tk8.1b2 - # This bug is logged as a pipe bug (bugID 1495). + # The following code segment cannot be run on Windows prior + # to Tk 8.1b3 due to a channel I/O bug (bugID 1495). global tcl_platform - if {$tcl_platform(platform) != "windows"} { - set ::tcltest::fd [open "|[list $::tcltest::tktest -geometry +0+0 -name tktest] $args" r+] - puts $::tcltest::fd "puts foo; flush stdout" - flush $::tcltest::fd - if {[gets $::tcltest::fd data] < 0} { - error "unexpected EOF from \"$::tcltest::tktest\"" - } - if {[string compare $data foo]} { - error "unexpected output from background process \"$data\"" - } - fileevent $::tcltest::fd readable bgReady + set ::tcltest::fd [open "|[list $::tcltest::tktest -geometry +0+0 -name tktest] $args" r+] + puts $::tcltest::fd "puts foo; flush stdout" + flush $::tcltest::fd + if {[gets $::tcltest::fd data] < 0} { + error "unexpected EOF from \"$::tcltest::tktest\"" + } + if {[string compare $data foo]} { + error "unexpected output from background process \"$data\"" } + fileevent $::tcltest::fd readable bgReady } # Send a command to the background process, catching errors and |