summaryrefslogtreecommitdiffstats
path: root/tests/all.tcl
diff options
context:
space:
mode:
authorhershey <hershey>1999-04-07 01:59:27 (GMT)
committerhershey <hershey>1999-04-07 01:59:27 (GMT)
commit394350f07a8489862559e3cc250c0a458d3976f6 (patch)
tree304c6955f30f31f1e87b98c8ca8f76237a8addeb /tests/all.tcl
parentd124d2f84fe634f2ddc201decb700181ec7fe770 (diff)
downloadtcl-394350f07a8489862559e3cc250c0a458d3976f6.zip
tcl-394350f07a8489862559e3cc250c0a458d3976f6.tar.gz
tcl-394350f07a8489862559e3cc250c0a458d3976f6.tar.bz2
change tcltest namespace variables from matchingTests and skippingTests to
match and skip. removed nonexistent constraint from interp.test and renumbered tests to remove duplicates.
Diffstat (limited to 'tests/all.tcl')
-rw-r--r--tests/all.tcl10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/all.tcl b/tests/all.tcl
index 000af90..4b3ccae 100644
--- a/tests/all.tcl
+++ b/tests/all.tcl
@@ -7,7 +7,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: all.tcl,v 1.1.2.5 1999/03/24 02:48:54 hershey Exp $
+# RCS: @(#) $Id: all.tcl,v 1.1.2.6 1999/04/07 01:59:27 hershey Exp $
if {[lsearch ::tcltest [namespace children]] == -1} {
source [file join [pwd] [file dirname [info script]] defs.tcl]
@@ -16,11 +16,11 @@ set ::tcltest::testSingleFile false
puts stdout "Tcl $tcl_patchLevel tests running in interp: [info nameofexecutable]"
puts stdout "Tests running in working dir: $::tcltest::workingDir"
-if {[llength $::tcltest::skippingTests] > 0} {
- puts stdout "Skipping tests that match: $::tcltest::skippingTests"
+if {[llength $::tcltest::skip] > 0} {
+ puts stdout "Skipping tests that match: $::tcltest::skip"
}
-if {[llength $::tcltest::matchingTests] > 0} {
- puts stdout "Only running tests that match: $::tcltest::matchingTests"
+if {[llength $::tcltest::match] > 0} {
+ puts stdout "Only running tests that match: $::tcltest::match"
}
# Use command line specified glob pattern (specified by -file or -f)