diff options
author | dgp <dgp@users.sourceforge.net> | 2012-06-05 13:06:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-06-05 13:06:09 (GMT) |
commit | 8de77e3a6b5714c4838b7be9ab7f9cf596ae8e77 (patch) | |
tree | a3bb935589218eb26716faa141fdcfa680bf4d52 | |
parent | 66ee899817944316fa1eecf3a7acddb92fb77fbb (diff) | |
parent | ae1f7964a946b5875aea979975c8a3f7c975eb76 (diff) | |
download | tcl-8de77e3a6b5714c4838b7be9ab7f9cf596ae8e77.zip tcl-8de77e3a6b5714c4838b7be9ab7f9cf596ae8e77.tar.gz tcl-8de77e3a6b5714c4838b7be9ab7f9cf596ae8e77.tar.bz2 |
3530533 Add comments to failing tests.
-rw-r--r-- | tests/io.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/io.test b/tests/io.test index 386179e..f3c39f4 100644 --- a/tests/io.test +++ b/tests/io.test @@ -2086,6 +2086,8 @@ set path(pipe) [makeFile {} pipe] set path(output) [makeFile {} output] test io-27.6 {FlushChannel, async flushing, async close} \ {stdio asyncPipeClose openpipe} { + # This test may fail on old Unix systems (seen on IRIX64 6.5) with + # obsolete gettimeofday() calls. See Tcl Bugs 3530533, 1942197. file delete $path(pipe) file delete $path(output) set f [open $path(pipe) w] @@ -2645,6 +2647,8 @@ test io-29.30 {Tcl_WriteChars, crlf mode} { file size $path(test1) } 25 test io-29.31 {Tcl_WriteChars, background flush} {stdio openpipe} { + # This test may fail on old Unix systems (seen on IRIX64 6.5) with + # obsolete gettimeofday() calls. See Tcl Bugs 3530533, 1942197. file delete $path(pipe) file delete $path(output) set f [open $path(pipe) w] @@ -2686,6 +2690,8 @@ test io-29.31 {Tcl_WriteChars, background flush} {stdio openpipe} { } ok test io-29.32 {Tcl_WriteChars, background flush to slow reader} \ {stdio asyncPipeClose openpipe} { + # This test may fail on old Unix systems (seen on IRIX64 6.5) with + # obsolete gettimeofday() calls. See Tcl Bugs 3530533, 1942197. file delete $path(pipe) file delete $path(output) set f [open $path(pipe) w] |