diff options
author | dgp <dgp@users.sourceforge.net> | 2014-11-26 17:00:55 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-11-26 17:00:55 (GMT) |
commit | f12dc54f7578abc9e2d5f625157263ec5a0bc40e (patch) | |
tree | 3e5190c1f6bf7c11a84c866357e5321453acf71b /tests/parseExpr.test | |
parent | 63678d528b5d4384d8a6fd8941b73888399227e5 (diff) | |
download | tcl-f12dc54f7578abc9e2d5f625157263ec5a0bc40e.zip tcl-f12dc54f7578abc9e2d5f625157263ec5a0bc40e.tar.gz tcl-f12dc54f7578abc9e2d5f625157263ec5a0bc40e.tar.bz2 |
Same issue in expr parser also tested and fixed.
Diffstat (limited to 'tests/parseExpr.test')
-rw-r--r-- | tests/parseExpr.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/parseExpr.test b/tests/parseExpr.test index c1c489b..3e0df29 100644 --- a/tests/parseExpr.test +++ b/tests/parseExpr.test @@ -1051,6 +1051,12 @@ test parseExpr-22.18 {Bug 3401704} -constraints testexprparser -body { testexprparser 0b02 -1 } -returnCodes error -match glob -result {*invalid binary number*} +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*} # cleanup cleanupTests |