summaryrefslogtreecommitdiffstats
path: root/tests/ioCmd.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-02-11 15:25:25 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-02-11 15:25:25 (GMT)
commit6cb164284e90f09d42fd4027a4c30a1491a0afae (patch)
tree591dec0172a67e8c0620beb1bf7a8c3ca45ef4fd /tests/ioCmd.test
parent1c013bdae2c36d6eb441377358453d1f215efc04 (diff)
downloadtcl-6cb164284e90f09d42fd4027a4c30a1491a0afae.zip
tcl-6cb164284e90f09d42fd4027a4c30a1491a0afae.tar.gz
tcl-6cb164284e90f09d42fd4027a4c30a1491a0afae.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 f27d2a0..4dde148 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.36.2.6 2009/08/06 22:28:44 andreas_kupries Exp $
+# RCS: @(#) $Id: ioCmd.test,v 1.36.2.7 2010/02/11 15:25:25 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -380,6 +380,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)