diff options
author | andreas_kupries <akupries@shaw.ca> | 2008-04-08 23:37:34 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2008-04-08 23:37:34 (GMT) |
commit | b9d8b42283130a00f36eb16526ac8543a95ddc97 (patch) | |
tree | eed01c71b1c4d1502405aa4c77e625aa6a52f30c /tests/io.test | |
parent | 56497ff7346fa776215fc25fd154ee60d5422e2b (diff) | |
download | tcl-b9d8b42283130a00f36eb16526ac8543a95ddc97.zip tcl-b9d8b42283130a00f36eb16526ac8543a95ddc97.tar.gz tcl-b9d8b42283130a00f36eb16526ac8543a95ddc97.tar.bz2 |
* tests/io.test (io-53.8,53.9,53.10): Backported das' fix of typo
and quoting for spaces in builddir path.
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 f59226d..f9289ca 100644 --- a/tests/io.test +++ b/tests/io.test @@ -13,7 +13,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.40.2.16 2008/04/07 22:17:37 andreas_kupries Exp $ +# RCS: @(#) $Id: io.test,v 1.40.2.17 2008/04/08 23:37:36 andreas_kupries Exp $ if {[catch {package require tcltest 2}]} { puts stderr "Skipping tests in [info script]. tcltest 2 required." @@ -6943,7 +6943,7 @@ test io-53.8 {CopyData: async callback and error handling, Bug 1932639} -setup { # Run the copy. Should not invoke -command now. fcopy $f $g -size 2 -command ::cmd # Check that -command was not called synchronously - set sbs [file size bar] + set sbs [file size $bar] lappend ::RES [expr {($sbs > 0) ? "sync/FAIL" : "sync/OK"}] $sbs # Now let the async part happen. Should capture the error in cmd # via bgerror. If not break the event loop via timer. @@ -6968,7 +6968,7 @@ test io-53.8 {CopyData: async callback and error handling, Bug 1932639} -setup { test io-53.9 {CopyData: -size and event interaction, Bug 780533} -setup { set out [makeFile {} out] set err [makeFile {} err] - set pipe [open "|[info nameofexecutable] 2> $err" r+] + set pipe [open "|[list [info nameofexecutable] 2> $err]" r+] fconfigure $pipe -translation binary -buffering line puts $pipe { fconfigure stdout -translation binary -buffering line @@ -7015,7 +7015,7 @@ test io-53.9 {CopyData: -size and event interaction, Bug 780533} -setup { } -result OK test io-53.10 {Bug 1350564, multi-directional fcopy} -setup { set err [makeFile {} err] - set pipe [open "|[info nameofexecutable] 2> $err" r+] + set pipe [open "|[list [info nameofexecutable] 2> $err]" r+] fconfigure $pipe -translation binary -buffering line puts $pipe { fconfigure stderr -buffering line |