diff options
author | stanton <stanton> | 1998-11-02 23:04:13 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-11-02 23:04:13 (GMT) |
commit | 099b6e9e41a346098526d7088680732358fa2e72 (patch) | |
tree | f83adf3b279fbc76856cab9fd4e55a88127e5a8c /tests/io.test | |
parent | f8c896766a7b11645db9f8c553ccb6fff4529996 (diff) | |
download | tcl-099b6e9e41a346098526d7088680732358fa2e72.zip tcl-099b6e9e41a346098526d7088680732358fa2e72.tar.gz tcl-099b6e9e41a346098526d7088680732358fa2e72.tar.bz2 |
cleaned up test suite so most of the tests pass on Windows
Diffstat (limited to 'tests/io.test')
-rw-r--r-- | tests/io.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/io.test b/tests/io.test index 583e333..51dc6ae 100644 --- a/tests/io.test +++ b/tests/io.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: io.test,v 1.5 1998/10/30 00:38:39 welch Exp $ +# RCS: @(#) $Id: io.test,v 1.6 1998/11/02 23:04:14 stanton Exp $ if {[string compare test [info procs test]] == 1} then {source defs} @@ -5151,8 +5151,8 @@ test io-34.2 {buffered data and file events, read} { proc accept {sock args} { set ::s2 $sock } - set server [socket -server accept 4040] - set s [socket localhost 4040] + set server [socket -server accept 4041] + set s [socket localhost 4041] vwait s2 update fileevent $s2 readable {lappend result readable} @@ -5187,7 +5187,7 @@ test io-35.1 {Tcl_NotifyChannel and error when closing} {unixOrPc} { } } close $out - set pipe [open "|$tcltest script" r] + set pipe [open "|[list $tcltest] script" r] fileevent $pipe readable [list readit $pipe] set x "" set result "" |