Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improve precision of the new test case by removing a superfluous carriage-return from the shell command input. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | expShell |
Files: | files | file ages | folders |
SHA1: |
913c41b2cdb7c1ec9eba2c8889715b18 |
User & Date: | mistachkin 2015-01-19 21:27:46.816 |
Context
2015-02-27
| ||
19:40 | Merge updates from trunk. (check-in: acf7684323 user: mistachkin tags: expShell) | |
2015-01-19
| ||
21:27 | Improve precision of the new test case by removing a superfluous carriage-return from the shell command input. (check-in: 913c41b2cd user: mistachkin tags: expShell) | |
21:11 | Add comments and improve the new test case. (check-in: 4ec2aeadf9 user: mistachkin tags: expShell) | |
Changes
Changes to test/shell1.test.
︙ | ︙ | |||
856 857 858 859 860 861 862 | # channel end-of-line translations. # set escapes [list \ \t \\t \n \\n \v \\v \f \\f \ " " "\" \"" \" \\\" ' \"'\" \\ \\\\] } set char [string map $escapes $char] | | | 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 | # channel end-of-line translations. # set escapes [list \ \t \\t \n \\n \v \\v \f \\f \ " " "\" \"" \" \\\" ' \"'\" \\ \\\\] } set char [string map $escapes $char] set x [catchcmdex test.db ".print $char\n"] set code [lindex $x 0] set res [lindex $x 1] if {$code ne "0"} { error "failed with error: $res" } if {$res ne "$oldChar\n"} { error "failed with byte $hex mismatch" |
︙ | ︙ |