diff options
author | oehhar <harald.oehlmann@elmicron.de> | 2014-12-17 07:53:41 (GMT) |
---|---|---|
committer | oehhar <harald.oehlmann@elmicron.de> | 2014-12-17 07:53:41 (GMT) |
commit | f716d8815b6d817da037a00fe888567854fbc690 (patch) | |
tree | 53724883281fc684d74af9de3e4a0a1bfd56e946 /tests/parseOld.test | |
parent | d7604e5728758d9d4d1efb8124548d3df914bf9b (diff) | |
parent | 4e0313afe2507b8fb3f6dbfb4b8470e098c9f53f (diff) | |
download | tcl-f716d8815b6d817da037a00fe888567854fbc690.zip tcl-f716d8815b6d817da037a00fe888567854fbc690.tar.gz tcl-f716d8815b6d817da037a00fe888567854fbc690.tar.bz2 |
Merge trunk
Diffstat (limited to 'tests/parseOld.test')
-rw-r--r-- | tests/parseOld.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/parseOld.test b/tests/parseOld.test index 4c08b5d..a6e07a2b 100644 --- a/tests/parseOld.test +++ b/tests/parseOld.test @@ -263,14 +263,14 @@ test parseOld-7.11 {backslash substitution} { eval "list a \"b c\"\\\nd e" } {a {b c} d e} test parseOld-7.12 {backslash substitution} testbytestring { - list \ua2 -} [testbytestring "\xc2\xa2"] + expr {[list \ua2] eq [testbytestring "\xc2\xa2"]} +} 1 test parseOld-7.13 {backslash substitution} testbytestring { - list \u4e21 -} [testbytestring "\xe4\xb8\xa1"] + expr {[list \u4e21] eq [testbytestring "\xe4\xb8\xa1"]} +} 1 test parseOld-7.14 {backslash substitution} testbytestring { - list \u4e2k -} [testbytestring "\xd3\xa2k"] + expr {[list \u4e2k] eq [testbytestring "\xd3\xa2k"]} +} 1 # Semi-colon. |