diff options
author | jenn <jenn> | 1999-07-01 17:36:17 (GMT) |
---|---|---|
committer | jenn <jenn> | 1999-07-01 17:36:17 (GMT) |
commit | cbc160d0d87b1efa3096c590343d0553633cb9cc (patch) | |
tree | 91c7ea1303cdb2c610ed9fab04bb7259d35d0953 /tests/io.test | |
parent | 4b2545f82897102c47126bae5016cc3ad08f0cc1 (diff) | |
download | tcl-cbc160d0d87b1efa3096c590343d0553633cb9cc.zip tcl-cbc160d0d87b1efa3096c590343d0553633cb9cc.tar.gz tcl-cbc160d0d87b1efa3096c590343d0553633cb9cc.tar.bz2 |
Changed the tests to use the testConstraints array that the
test harness uses instead of the old name (testConfig).
Diffstat (limited to 'tests/io.test')
-rw-r--r-- | tests/io.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/io.test b/tests/io.test index 7b89bda..b2716de 100644 --- a/tests/io.test +++ b/tests/io.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: io.test,v 1.9 1999/06/26 03:54:15 jenn Exp $ +# RCS: @(#) $Id: io.test,v 1.10 1999/07/01 17:36:18 jenn Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -5100,7 +5100,7 @@ test io-40.2 {POSIX open access modes: CREAT} {unixOnly} { # some tests can only be run is umask is 2 # if "umask" cannot be run, the tests will be skipped. -catch {set ::tcltest::testConfig(umask2) [expr {[exec umask] == 2}]} +catch {set ::tcltest::testConstraints(umask2) [expr {[exec umask] == 2}]} test io-40.3 {POSIX open access modes: CREAT} {unixOnly umask2} { # This test only works if your umask is 2, like ouster's. |