diff options
author | dkf <dkf@noemail.net> | 2009-01-06 15:24:49 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2009-01-06 15:24:49 (GMT) |
commit | b3589a56c9fa4025b74f0611e518cedfdb90d2fc (patch) | |
tree | 1784a6a2c5d67b7255f2cd3b23a6754296aa5188 | |
parent | 6991c588b929dc1b872d6ab0177c96661c1c4ec8 (diff) | |
download | tcl-b3589a56c9fa4025b74f0611e518cedfdb90d2fc.zip tcl-b3589a56c9fa4025b74f0611e518cedfdb90d2fc.tar.gz tcl-b3589a56c9fa4025b74f0611e518cedfdb90d2fc.tar.bz2 |
Fix [Bug 2006879]
FossilOrigin-Name: 0a57255dbc64bb0ffaa53795e38c5aa314e31898
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | tests/expr.test | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2009-01-06 Donal K. Fellows <dkf@users.sf.net> + * tests/expr.test: Eliminate non-ASCII char. [Bug 2006879] + * generic/tclOOInfo.c (InfoObjectMethodsCmd,InfoClassMethodsCmd): Only delete pointers that were actually allocated! [Bug 2489836] diff --git a/tests/expr.test b/tests/expr.test index e51e4c1..d9612ac 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.73 2008/10/05 21:27:07 kennykb Exp $ +# RCS: @(#) $Id: expr.test,v 1.74 2009/01/06 15:24:49 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2.1 @@ -355,7 +355,7 @@ test expr-8.11 {CompileEqualityExpr: error compiling equality arm} -body { expr 2!=x } -returnCodes error -match glob -result * 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.13 {CompileBitAndExpr: equality expr} {expr {"\374" eq [set s \u00fc]}} 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 |