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/winPipe.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/winPipe.test')
-rw-r--r-- | tests/winPipe.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/winPipe.test b/tests/winPipe.test index b2c3c8a..df557c8 100644 --- a/tests/winPipe.test +++ b/tests/winPipe.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: winPipe.test,v 1.10 1999/06/29 20:14:17 jenn Exp $ +# RCS: @(#) $Id: winPipe.test,v 1.11 1999/07/01 17:36:20 jenn Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -23,13 +23,13 @@ set bindir [file join [pwd] [file dirname [info nameofexecutable]]] set cat16 [file join $bindir cat16.exe] set cat32 [file join $bindir cat32.exe] -set ::tcltest::testConfig(cat32) [file exists $cat32] -set ::tcltest::testConfig(cat16) [file exists $cat16] +set ::tcltest::testConstraints(cat32) [file exists $cat32] +set ::tcltest::testConstraints(cat16) [file exists $cat16] if {[catch {puts console1 ""}]} { - set ::tcltest::testConfig(AllocConsole) 1 + set ::tcltest::testConstraints(AllocConsole) 1 } else { - set ::tcltest::testConfig(.console) 1 + set ::tcltest::testConstraints(.console) 1 } set big bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb\n |