summaryrefslogtreecommitdiffstats
path: root/tests/while.test
diff options
context:
space:
mode:
authorhershey <hershey>1999-03-23 20:06:07 (GMT)
committerhershey <hershey>1999-03-23 20:06:07 (GMT)
commit0655548ba871678e963739a6a17f0f45786567f7 (patch)
treeebf678e2071193656adef6036d8e6f062614bba1 /tests/while.test
parent3a67bb873f58d320e136a97c9fb0be1cd23035f4 (diff)
downloadtcl-0655548ba871678e963739a6a17f0f45786567f7.zip
tcl-0655548ba871678e963739a6a17f0f45786567f7.tar.gz
tcl-0655548ba871678e963739a6a17f0f45786567f7.tar.bz2
changed tests to use "tcltest" namespace instead of "test".
added constraints to tests, rather than skipping the entire file.
Diffstat (limited to 'tests/while.test')
-rw-r--r--tests/while.test16
1 files changed, 13 insertions, 3 deletions
diff --git a/tests/while.test b/tests/while.test
index 1013fcd..bbf52ea 100644
--- a/tests/while.test
+++ b/tests/while.test
@@ -10,9 +10,9 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: while.test,v 1.1.2.3 1999/03/11 18:50:19 hershey Exp $
+# RCS: @(#) $Id: while.test,v 1.1.2.4 1999/03/23 20:07:04 hershey Exp $
-if {[lsearch [namespace children] ::test] == -1} {
+if {[lsearch [namespace children] ::tcltest] == -1} {
source [file join [pwd] [file dirname [info script]] defs.tcl]
}
@@ -606,6 +606,16 @@ test while-6.5 {continue tests, long command body with computed command names} {
} {1 3}
# cleanup
-::test::cleanupTests
+::tcltest::cleanupTests
return
+
+
+
+
+
+
+
+
+
+