diff options
author | dgp <dgp@users.sourceforge.net> | 2014-05-31 02:30:53 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-05-31 02:30:53 (GMT) |
commit | ea994aa1957bd3faea8f4cdf2ae290d102ae1fe8 (patch) | |
tree | 3f9b6d9193106dd231d49d362e80218a14e32d8b /tests | |
parent | d344208a62df4671dac9a66fa4589979bc68d7bb (diff) | |
download | tcl-ea994aa1957bd3faea8f4cdf2ae290d102ae1fe8.zip tcl-ea994aa1957bd3faea8f4cdf2ae290d102ae1fe8.tar.gz tcl-ea994aa1957bd3faea8f4cdf2ae290d102ae1fe8.tar.bz2 |
Correct the interest masks in the Tcl_CreateFileHandler() calls in
PipeWatchProc(). When we are interested in both readable and writable
events of a command pipeline channel, we only want the readable from
the read end of the pipe, and the writable from the write end of the pipe.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/io.test | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/io.test b/tests/io.test index f1248b9..2296986 100644 --- a/tests/io.test +++ b/tests/io.test @@ -7120,17 +7120,12 @@ test io-53.4 {CopyData: background write overflow} {stdio unix openpipe fileeven for {set x 0} {$x < 12} {incr x} { append big $big } -# file delete $path(test1) file delete $path(pipe) set f1 [open $path(pipe) w] puts $f1 { puts ready fcopy stdin stdout -command { set x } vwait x -# set f [open $path(test1) w] -# fconfigure $f -translation lf -# puts $f "done" -# close $f } close $f1 set f1 [open "|[list [interpreter] $path(pipe)]" r+] @@ -7138,7 +7133,6 @@ test io-53.4 {CopyData: background write overflow} {stdio unix openpipe fileeven fconfigure $f1 -blocking 0 puts $f1 $big flush $f1 - after 500 set result "" fileevent $f1 read [namespace code { append result [read $f1 1024] |