diff options
author | mdejong <mdejong> | 2003-02-05 20:05:43 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2003-02-05 20:05:43 (GMT) |
commit | bed70f40d96aeecb25a9bc1f7a28f4adc49b1281 (patch) | |
tree | 61c03559255372f6bc1f326127fad60a1c833d3a /tests/interp.test | |
parent | 630b31eb1db036388d30359b456d2bee9c4e499b (diff) | |
download | tcl-bed70f40d96aeecb25a9bc1f7a28f4adc49b1281.zip tcl-bed70f40d96aeecb25a9bc1f7a28f4adc49b1281.tar.gz tcl-bed70f40d96aeecb25a9bc1f7a28f4adc49b1281.tar.bz2 |
* tests/interp.test:
* tests/set-old.test: Run test cases that depend
on hash order through lsort so that the tests
also pass under Jacl. Does not change test
results under Tcl.
Diffstat (limited to 'tests/interp.test')
-rw-r--r-- | tests/interp.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/interp.test b/tests/interp.test index 5824639..0af4cfc 100644 --- a/tests/interp.test +++ b/tests/interp.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: interp.test,v 1.18 2002/11/23 01:22:51 hobbs Exp $ +# RCS: @(#) $Id: interp.test,v 1.19 2003/02/05 20:05:47 mdejong Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -258,8 +258,8 @@ test interp-7.4 {testing basic alias creation} { a alias bar } {in_master a1 a2 a3} test interp-7.5 {testing basic alias creation} { - a aliases -} {foo bar} + lsort [a aliases] +} {bar foo} test interp-7.6 {testing basic aliases arg checking} { list [catch {a aliases too many args} msg] $msg } {1 {wrong # args: should be "a aliases"}} |