From 8ca871ca39ab7d50c5806364f195bbfcce4ab60d Mon Sep 17 00:00:00 2001 From: andreas_kupries Date: Thu, 13 Sep 2001 19:07:17 +0000 Subject: * tests/ioCmd.test: Changed the computation of the result for iocmd-8.1[123] so that the tests work for single- and multi-process execution of the testsuite. Depending on the choice of the user stdout is a tty or not and thus reports different channel options. Fixes [460993] reported by Don Porter. FossilOrigin-Name: 7a1cfa3169a05998921f19c8fb1b3ce1c535071e --- ChangeLog | 10 +++++++++- tests/ioCmd.test | 25 +++++++++++++++++++++---- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6d23dbc..eba746d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2001-09-13 Andreas Kupries + + * tests/ioCmd.test: Changed the computation of the result for + iocmd-8.1[123] so that the tests work for single- and + multi-process execution of the testsuite. Depending on the + choice of the user stdout is a tty or not and thus reports + different channel options. Fixes [460993] reported by Don + Porter. + 2001-09-13 Miguel Sofer * doc/ParseCmd.3: @@ -11,7 +20,6 @@ same duties but adheres to the standard return convention for Tcl evaluations; the deprecated function could only return TCL_OK or TCL_ERROR, which caused [Bug: 219384] and [Bug: 455151]. - 2001-09-12 Mo DeJong diff --git a/tests/ioCmd.test b/tests/ioCmd.test index 38a3e32..79d6c7c 100644 --- a/tests/ioCmd.test +++ b/tests/ioCmd.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: ioCmd.test,v 1.9 2001/07/31 19:12:07 vincentdarley Exp $ +# RCS: @(#) $Id: ioCmd.test,v 1.10 2001/09/13 19:07:18 andreas_kupries Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -237,15 +237,32 @@ test iocmd-8.9 {fconfigure command} { test iocmd-8.10 {fconfigure command} { list [catch {fconfigure a b} msg] $msg } {1 {can not find channel named "a"}} + +makeFile {} fconfigure.dummy + test iocmd-8.11 {fconfigure command} { - list [catch {fconfigure stdout -froboz blarfo} msg] $msg + set chan [open fconfigure.dummy r] + set res [list [catch {fconfigure $chan -froboz blarfo} msg] $msg] + close $chan + set res } {1 {bad option "-froboz": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, or -translation}} + test iocmd-8.12 {fconfigure command} { - list [catch {fconfigure stdout -b blarfo} msg] $msg + set chan [open fconfigure.dummy r] + set res [list [catch {fconfigure $chan -b blarfo} msg] $msg] + close $chan + set res } {1 {bad option "-b": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, or -translation}} + test iocmd-8.13 {fconfigure command} { - list [catch {fconfigure stdout -buffer blarfo} msg] $msg + set chan [open fconfigure.dummy r] + set res [list [catch {fconfigure $chan -buffer blarfo} msg] $msg] + close $chan + set res } {1 {bad option "-buffer": should be one of -blocking, -buffering, -buffersize, -encoding, -eofchar, or -translation}} + +removeFile fconfigure.dummy + test iocmd-8.14 {fconfigure command} { fconfigure stdin -buffers } 4096 -- cgit v0.12