summaryrefslogtreecommitdiffstats
path: root/tests/io.test
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2007-05-04 14:59:06 (GMT)
committerKevin B Kenny <kennykb@acm.org>2007-05-04 14:59:06 (GMT)
commit45ba16a3055b23da16e3275473875be2d863443e (patch)
tree6b08e2b80a6ce52cf0aee7b58f37d945387ceb74 /tests/io.test
parent97fe528dbd35dd9aa9d10366f9d9c6a5b6a45a87 (diff)
downloadtcl-45ba16a3055b23da16e3275473875be2d863443e.zip
tcl-45ba16a3055b23da16e3275473875be2d863443e.tar.gz
tcl-45ba16a3055b23da16e3275473875be2d863443e.tar.bz2
* tests/encoding.test: Modified so that encoding tests happen
in a private namespace, to avoid polluting the global one. This problem was discovered when running the test suite '-singleproc 1 -skip exec.test' because the 'path' variable in encoding.test conflicted with the one in io.test. * tests/io.test: Made more of the working variables private to the namespace.
Diffstat (limited to 'tests/io.test')
-rw-r--r--tests/io.test11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/io.test b/tests/io.test
index 2ba2183..f74b078 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.75 2006/12/27 01:25:35 mdejong Exp $
+# RCS: @(#) $Id: io.test,v 1.76 2007/05/04 14:59:06 kennykb Exp $
if {[catch {package require tcltest 2}]} {
puts stderr "Skipping tests in [info script]. tcltest 2 required."
@@ -22,6 +22,15 @@ if {[catch {package require tcltest 2}]} {
namespace eval ::tcl::test::io {
namespace import ::tcltest::*
+ variable umaskValue
+ variable path
+ variable f
+ variable i
+ variable n
+ variable v
+ variable msg
+ variable expected
+
testConstraint testchannel [llength [info commands testchannel]]
testConstraint exec [llength [info commands exec]]
testConstraint openpipe 1