summaryrefslogtreecommitdiffstats
path: root/tests/basic.test
diff options
context:
space:
mode:
authorjenn <jenn@noemail.net>1999-10-19 18:08:34 (GMT)
committerjenn <jenn@noemail.net>1999-10-19 18:08:34 (GMT)
commit389d3f198b938a2aea09dbb570d42cd55c285c20 (patch)
tree69cab503a9d184acbb3fc80f69ff7bee4f2d7038 /tests/basic.test
parent2c6860ce29d20a5d96a8ea3d96d5235b25f38cb7 (diff)
downloadtcl-389d3f198b938a2aea09dbb570d42cd55c285c20.zip
tcl-389d3f198b938a2aea09dbb570d42cd55c285c20.tar.gz
tcl-389d3f198b938a2aea09dbb570d42cd55c285c20.tar.bz2
* tests/tcltest.test:
* doc/tcltest.n: * library/tcltest1.0/tcltest.tcl: Removed the extra return at the end of the tcltest.tcl file. Applied patches sent in by Andreas Kupries to add helper procs for debug output, add 3 new flags (-testsdir, -load, -loadfile), and internally refactors common code for dealing with paths into separate procedures. [Bug: 2838, 2842] FossilOrigin-Name: 58252d4dac5ccaff0e51834d2b981eb00da26674
Diffstat (limited to 'tests/basic.test')
-rw-r--r--tests/basic.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/basic.test b/tests/basic.test
index 3d9588b..66c7551 100644
--- a/tests/basic.test
+++ b/tests/basic.test
@@ -15,7 +15,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: basic.test,v 1.8 1999/10/13 00:32:29 hobbs Exp $
+# RCS: @(#) $Id: basic.test,v 1.9 1999/10/19 18:08:44 jenn Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -494,10 +494,10 @@ test basic-39.1 {Tcl_CreateTrace, correct command and argc/argv arguments of tra
} {{expr 14 + 16} {expr 14 + 16} {set stuff [expr 14 + 16]} {set stuff 30}}
test basic-39.2 {Tcl_CreateTrace, correct command and argc/argv arguments of trace proc} {
testcmdtrace tracetest {set stuff [info tclversion]}
-} {{info tclversion} {info tclversion} {set stuff [info tclversion]} {set stuff 8.3}}
+} [list {info tclversion} {info tclversion} {set stuff [info tclversion]} "set stuff $::tcltest::version"]
test basic-39.3 {Tcl_CreateTrace, correct command and argc/argv arguments of trace proc} {
testcmdtrace deletetest {set stuff [info tclversion]}
-} 8.3
+} $::tcltest::version
}
test basic-40.1 {Tcl_DeleteTrace} {emptyTest} {