diff options
author | dgp <dgp@users.sourceforge.net> | 2018-01-25 21:35:01 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2018-01-25 21:35:01 (GMT) |
commit | d20d1e603b71ac5bc0fb1074309917b60609e1b5 (patch) | |
tree | e9861767a67322f048c8d9fa8cbeb639a54f603b | |
parent | 92aca935b38217e0b34c9fcc83d732eec5f1dd92 (diff) | |
parent | 19c01427417c7773a8809a3c9f0f681e751d583e (diff) | |
download | tcl-d20d1e603b71ac5bc0fb1074309917b60609e1b5.zip tcl-d20d1e603b71ac5bc0fb1074309917b60609e1b5.tar.gz tcl-d20d1e603b71ac5bc0fb1074309917b60609e1b5.tar.bz2 |
test suite debugging
-rw-r--r-- | tests/chanio.test | 7 | ||||
-rw-r--r-- | tests/exec.test | 1 | ||||
-rw-r--r-- | tests/info.test | 2 | ||||
-rw-r--r-- | tests/io.test | 5 | ||||
-rw-r--r-- | tests/ioCmd.test | 5 |
5 files changed, 12 insertions, 8 deletions
diff --git a/tests/chanio.test b/tests/chanio.test index 8c74566..92f1c03 100644 --- a/tests/chanio.test +++ b/tests/chanio.test @@ -5866,6 +5866,8 @@ test chan-io-47.6 {file events on shared files, deleting file events} -setup { testfevent delete chan close $f } -result {{script 1} {}} +unset path(foo) +removeFile foo set path(bar) [makeFile {} bar] @@ -5961,6 +5963,9 @@ test chan-io-48.3 {testing readability conditions} -setup { } -cleanup { chan close $f } -result {done {0 1 0 1 0 1 0 1 0 1 0 1 0 0}} +unset path(bar) +removeFile bar + test chan-io-48.4 {lf write, testing readability, ^Z termination, auto read mode} -setup { file delete $path(test1) set c 0 @@ -6790,8 +6795,6 @@ test chan-io-52.11 {TclCopyChannel & encodings} -setup { chan close $in chan close $out file size $path(kyrillic.txt) -} -cleanup { - file delete $path(utf8-fcopy.txt) } -result 3 test chan-io-53.1 {CopyData} -setup { diff --git a/tests/exec.test b/tests/exec.test index dffd960..3d1cd56 100644 --- a/tests/exec.test +++ b/tests/exec.test @@ -300,7 +300,6 @@ test exec-6.3 {redirecting stderr through a pipeline} {exec stdio} { # I/O redirection: combinations. set path(gorp.file2) [makeFile {} gorp.file2] -file delete $path(gorp.file2) test exec-7.1 {multiple I/O redirections} {exec} { exec << "command input" > $path(gorp.file2) [interpreter] $path(cat) < $path(gorp.file) diff --git a/tests/info.test b/tests/info.test index fd89b47..8176ad3 100644 --- a/tests/info.test +++ b/tests/info.test @@ -2398,7 +2398,7 @@ test info-33.35 {{*}, literal, simple, bytecompiled} -body { # ------------------------------------------------------------------------- unset -nocomplain res -test info-39.0 {Bug 4b61afd660} -setup { +test info-39.2 {Bug 4b61afd660} -setup { proc probe {} { return [dict get [info frame -1] line] } diff --git a/tests/io.test b/tests/io.test index 3fc370d..f73f49a 100644 --- a/tests/io.test +++ b/tests/io.test @@ -6163,6 +6163,8 @@ test io-47.6 {file events on shared files, deleting file events} {testfevent fil close $f set x } {{script 1} {}} +unset path(foo) +removeFile foo set path(bar) [makeFile {} bar] @@ -6265,6 +6267,9 @@ test io-48.3 {testing readability conditions} {stdio unix nonBlockFiles openpipe close $f list $x $l } {done {0 1 0 1 0 1 0 1 0 1 0 1 0 0}} +unset path(bar) +removeFile bar + test io-48.4 {lf write, testing readability, ^Z termination, auto read mode} {fileevent} { file delete $path(test1) set f [open $path(test1) w] diff --git a/tests/ioCmd.test b/tests/ioCmd.test index cd89a02..b4ba04a 100644 --- a/tests/ioCmd.test +++ b/tests/ioCmd.test @@ -384,7 +384,6 @@ test iocmd-10.5 {fblocked command} { set path(test4) [makeFile {} test4] set path(test5) [makeFile {} test5] -file delete $path(test5) test iocmd-11.1 {I/O to command pipelines} {unixOrPc unixExecs} { set f [open $path(test4) w] close $f @@ -3836,8 +3835,6 @@ foreach file [list test1 test2 test3 test4] { } # delay long enough for background processes to finish after 500 -foreach file [list test5] { - removeFile $file -} +removeFile test5 cleanupTests return |