summaryrefslogtreecommitdiffstats
path: root/tests/io.test
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-12-08 03:50:12 (GMT)
committerhobbs <hobbs>1999-12-08 03:50:12 (GMT)
commitc8b04b0da22061d0432a1dcb7378f80018ded6ac (patch)
tree90592171e3c7cfb8701c44a4a04a6df7389f940f /tests/io.test
parent272afc55dfb7eb7ce558666ea33fd879014ba74e (diff)
downloadtcl-c8b04b0da22061d0432a1dcb7378f80018ded6ac.zip
tcl-c8b04b0da22061d0432a1dcb7378f80018ded6ac.tar.gz
tcl-c8b04b0da22061d0432a1dcb7378f80018ded6ac.tar.bz2
* tests/io.test: removed 'knownBug' tests that were for
unsupported0, which is now fcopy (that already has tests)
Diffstat (limited to 'tests/io.test')
-rw-r--r--tests/io.test69
1 files changed, 1 insertions, 68 deletions
diff --git a/tests/io.test b/tests/io.test
index 65e1662..e225423 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -12,7 +12,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.12 1999/08/27 21:45:17 jenn Exp $
+# RCS: @(#) $Id: io.test,v 1.13 1999/12/08 03:50:12 hobbs Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -64,73 +64,6 @@ makeFile {
set thisScript [file join [pwd] [info script]]
-# These tests are disabled until we decide what to do with "unsupported0".
-#
-test io-1.1 {unsupported0 command} {knownBug} {
- removeFile test1
- set f1 [open iocmd.test]
- set f2 [open test1 w]
- unsupported0 $f1 $f2
- close $f1
- catch {close $f2}
- set s1 [file size $thisScript]
- set s2 [file size test1]
- set x ok
- if {"$s1" != "$s2"} {
- set x broken
- }
- set x
-} ok
-test io-1.2 {unsupported0 command} {knownBug} {
- removeFile test1
- set f1 [open $thisScript]
- set f2 [open test1 w]
- unsupported0 $f1 $f2 40
- close $f1
- close $f2
- file size test1
-} 40
-test io-1.3 {unsupported0 command} {knownBug} {
- removeFile test1
- set f1 [open $thisScript]
- set f2 [open test1 w]
- unsupported0 $f1 $f2 -1
- close $f1
- close $f2
- set x ok
- set s1 [file size $thisScript]
- set s2 [file size test1]
- if {$s1 != $s2} {
- set x broken
- }
- set x
-} ok
-test io-1.4 {unsupported0 command} {knownBug unixOrPc} {
- removeFile pipe
- removeFile test1
- set f1 [open pipe w]
- puts $f1 {puts ready}
- puts $f1 {gets stdin}
- puts $f1 {set f1 [open $thisScript r]}
- puts $f1 {puts [read $f1 100]}
- puts $f1 {close $f1}
- close $f1
- set f1 [open "|[list $::tcltest::tcltest pipe]" r+]
- gets $f1
- puts $f1 ready
- flush $f1
- set f2 [open test1 w]
- set c [unsupported0 $f1 $f2 40]
- catch {close $f1}
- close $f2
- set s1 [file size test1]
- set x ok
- if {$s1 != "40"} {
- set x broken
- }
- list $c $x
-} {40 ok}
-
proc contents {file} {
set f [open $file]
fconfigure $f -translation binary