diff options
author | dgp <dgp@users.sourceforge.net> | 2014-12-05 12:28:01 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-12-05 12:28:01 (GMT) |
commit | 71a48e59c2eb9d90233530198576fc445abfda42 (patch) | |
tree | 94c5a2756c009d91338f8ee894ae0122dd4f35e9 /tests/parseExpr.test | |
parent | 423020bd63284883ef0e1343574dd256b7023ae0 (diff) | |
parent | 3041f3f9a1d8a242105ffe99eebae201a7079549 (diff) | |
download | tcl-71a48e59c2eb9d90233530198576fc445abfda42.zip tcl-71a48e59c2eb9d90233530198576fc445abfda42.tar.gz tcl-71a48e59c2eb9d90233530198576fc445abfda42.tar.bz2 |
[d2ffcca163] Limit parsing results that are documented to accept only ASCII chars to actually follow that constraint. This requires not trusting isalnum(.) and isalpha(.) to deliver portable identical results.
Diffstat (limited to 'tests/parseExpr.test')
-rw-r--r-- | tests/parseExpr.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/parseExpr.test b/tests/parseExpr.test index 5c7986a..ef05454 100644 --- a/tests/parseExpr.test +++ b/tests/parseExpr.test @@ -1064,6 +1064,15 @@ test parseExpr-22.18 {Bug 3401704} -constraints testexprparser -body { dict get $o -errorcode } -result {TCL PARSE EXPR BADNUMBER BINARY} +test parseExpr-22.19 {Bug d2ffcca163} -constraints testexprparser -body { + testexprparser \u0433 -1 +} -returnCodes error -match glob -result {*invalid character*} +test parseExpr-22.20 {Bug d2ffcca163} -constraints testexprparser -body { + testexprparser \u043f -1 +} -returnCodes error -match glob -result {*invalid character*} +test parseExpr-22.21 {Bug d2ffcca163} -constraints testexprparser -body { + testexprparser in\u0433(0) -1 +} -returnCodes error -match glob -result {missing operand*} # cleanup cleanupTests |