summaryrefslogtreecommitdiffstats
path: root/tests/ioCmd.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-02-11 15:20:37 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-02-11 15:20:37 (GMT)
commitfaf1d78f0e68dafb8c624ca8f5ddcfafbbe7e775 (patch)
treecf57475166d9cecb053a312208812e190dbf581f /tests/ioCmd.test
parenta80d0318d2c6fdaaad538515154acc68edfe3bbc (diff)
downloadtcl-faf1d78f0e68dafb8c624ca8f5ddcfafbbe7e775.zip
tcl-faf1d78f0e68dafb8c624ca8f5ddcfafbbe7e775.tar.gz
tcl-faf1d78f0e68dafb8c624ca8f5ddcfafbbe7e775.tar.bz2
[Bug 2949740]: Do not try to put a NULL pipeline channel into binary mode.
Diffstat (limited to 'tests/ioCmd.test')
-rw-r--r--tests/ioCmd.test5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/ioCmd.test b/tests/ioCmd.test
index ce9c98e..cafe3d9 100644
--- a/tests/ioCmd.test
+++ b/tests/ioCmd.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: ioCmd.test,v 1.50 2009/08/06 22:28:12 andreas_kupries Exp $
+# RCS: @(#) $Id: ioCmd.test,v 1.51 2010/02/11 15:20:37 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -395,6 +395,9 @@ test iocmd-11.2 {I/O to command pipelines} {unixOrPc unixExecs} {
test iocmd-11.3 {I/O to command pipelines} {unixOrPc unixExecs} {
list [catch {open "| echo > \"$path(test5)\"" r+} msg] $msg $::errorCode
} {1 {can't read output from command: standard output was redirected} NONE}
+test iocmd-11.4 {I/O to command pipelines} unixOrPc {
+ list [catch {open "| no_such_command_exists" rb} msg] $msg $::errorCode
+} {1 {couldn't execute "no_such_command_exists": no such file or directory} {POSIX ENOENT {no such file or directory}}}
test iocmd-12.1 {POSIX open access modes: RDONLY} {
file delete $path(test1)