diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-03-27 13:48:56 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-03-27 13:48:56 (GMT) |
commit | 765fa34df1dd348c3b4ed53ecf698aa542ba21ba (patch) | |
tree | fecf25082d0de44145e0686cba9bbf3e87c5b797 /tests/expr.test | |
parent | 6def5b4ca3044c768a03aad8316287ebfa8249ff (diff) | |
download | tcl-765fa34df1dd348c3b4ed53ecf698aa542ba21ba.zip tcl-765fa34df1dd348c3b4ed53ecf698aa542ba21ba.tar.gz tcl-765fa34df1dd348c3b4ed53ecf698aa542ba21ba.tar.bz2 |
More elimination of dup test numbers [Bugs 710365, 710369]
Diffstat (limited to 'tests/expr.test')
-rw-r--r-- | tests/expr.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/expr.test b/tests/expr.test index c06080f..b11dc15 100644 --- a/tests/expr.test +++ b/tests/expr.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: expr.test,v 1.17 2002/07/31 09:33:45 dkf Exp $ +# RCS: @(#) $Id: expr.test,v 1.18 2003/03/27 13:48:59 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -297,8 +297,8 @@ test expr-8.11 {CompileEqualityExpr: error compiling equality arm} { catch {expr 2!=x} msg set msg } {syntax error in expression "2!=x": variable references require preceding $} -test expr-8.14 {CompileBitAndExpr: equality expr} {expr {"a"eq"a"}} 1 -test expr-8.14 {CompileBitAndExpr: equality expr} {expr {"\374" eq "ü"}} 1 +test expr-8.12 {CompileBitAndExpr: equality expr} {expr {"a"eq"a"}} 1 +test expr-8.13 {CompileBitAndExpr: equality expr} {expr {"\374" eq "ü"}} 1 test expr-8.14 {CompileBitAndExpr: equality expr} {expr 3eq2} 0 test expr-8.15 {CompileBitAndExpr: equality expr} {expr 2.0eq2} 0 test expr-8.16 {CompileBitAndExpr: equality expr} {expr 3.2ne2.2} 1 |