diff options
author | stanton <stanton> | 1999-04-16 00:46:29 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-04-16 00:46:29 (GMT) |
commit | 97464e6cba8eb0008cf2727c15718671992b913f (patch) | |
tree | ce9959f2747257d98d52ec8d18bf3b0de99b9535 /tests/stack.test | |
parent | a8c96ddb94d1483a9de5e340b740cb74ef6cafa7 (diff) | |
download | tcl-97464e6cba8eb0008cf2727c15718671992b913f.zip tcl-97464e6cba8eb0008cf2727c15718671992b913f.tar.gz tcl-97464e6cba8eb0008cf2727c15718671992b913f.tar.bz2 |
merged tcl 8.1 branch back into the main trunk
Diffstat (limited to 'tests/stack.test')
-rw-r--r-- | tests/stack.test | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/tests/stack.test b/tests/stack.test index 2499220..1e62788 100644 --- a/tests/stack.test +++ b/tests/stack.test @@ -4,14 +4,16 @@ # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors. No output means no errors were found. # -# Copyright (c) 1998 by Scriptics Corporation. +# Copyright (c) 1998-1999 by Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: stack.test,v 1.1 1998/09/30 20:52:01 escoffon Exp $ +# RCS: @(#) $Id: stack.test,v 1.2 1999/04/16 00:47:34 stanton Exp $ -if {[string compare test [info procs test]] == 1} then {source defs} +if {[lsearch [namespace children] ::tcltest] == -1} { + source [file join [pwd] [file dirname [info script]] defs.tcl] +} # Note that a failure in this test results in a crash of the executable. @@ -21,3 +23,19 @@ test stack-1.1 {maxNestingDepth reached on infinite recursion} { rename recurse {} set rv } {too many nested calls to Tcl_EvalObj (infinite loop?)} + +# cleanup +::tcltest::cleanupTests +return + + + + + + + + + + + + |