diff options
author | dgp <dgp@users.sourceforge.net> | 2014-12-04 20:45:11 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-12-04 20:45:11 (GMT) |
commit | c4c311b0e2ca10bc95a35e3f60d9a939b55c26e4 (patch) | |
tree | 4f07618420b80d4752925925b1ead5e19a7f1a5d /tests | |
parent | f9fb8c8daf918e57d3a50a0428623a5e5c260e70 (diff) | |
download | tcl-c4c311b0e2ca10bc95a35e3f60d9a939b55c26e4.zip tcl-c4c311b0e2ca10bc95a35e3f60d9a939b55c26e4.tar.gz tcl-c4c311b0e2ca10bc95a35e3f60d9a939b55c26e4.tar.bz2 |
The isalpha(.) calls remaining in the expr parser still bring nonportability.
Commit a test that demonstrates that.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/parseExpr.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/parseExpr.test b/tests/parseExpr.test index 3e0df29..c3b0d71 100644 --- a/tests/parseExpr.test +++ b/tests/parseExpr.test @@ -1057,6 +1057,9 @@ test parseExpr-22.19 {Bug d2ffcca163} -constraints testexprparser -body { 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 |