diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-29 20:37:09 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-29 20:37:09 +0200 |
commit | 9f2e82ad2eef75eccafb2490dc6ff0983db92244 (patch) | |
tree | 17a8f685cd3498f3ca23524f091c40f97087802b | |
parent | c8334a40c9345d78e3a4e83cd94bff403d4ade74 (diff) | |
download | busybox-w32-9f2e82ad2eef75eccafb2490dc6ff0983db92244.tar.gz busybox-w32-9f2e82ad2eef75eccafb2490dc6ff0983db92244.tar.bz2 busybox-w32-9f2e82ad2eef75eccafb2490dc6ff0983db92244.zip |
ash: add testsuite for bug 585
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash_test/ash-redir/redir7.right | 3 | ||||
-rwxr-xr-x | shell/ash_test/ash-redir/redir7.tests | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/shell/ash_test/ash-redir/redir7.right b/shell/ash_test/ash-redir/redir7.right new file mode 100644 index 000000000..6430b0211 --- /dev/null +++ b/shell/ash_test/ash-redir/redir7.right | |||
@@ -0,0 +1,3 @@ | |||
1 | Ok | ||
2 | Ok | ||
3 | Done | ||
diff --git a/shell/ash_test/ash-redir/redir7.tests b/shell/ash_test/ash-redir/redir7.tests new file mode 100755 index 000000000..e9bedd0f4 --- /dev/null +++ b/shell/ash_test/ash-redir/redir7.tests | |||
@@ -0,0 +1,10 @@ | |||
1 | # Chars above 0x7f are used as special codes. | ||
2 | # 0x81 is CTLESC (see ash.c). | ||
3 | # The bug was that quoting and unquoting of them | ||
4 | # was out of sync for redirect filenames. | ||
5 | echo -e 'echo Ok >uni\x81code' >unicode.sh | ||
6 | echo -e 'cat uni\x81code' >>unicode.sh | ||
7 | echo -e 'cat uni?code' >>unicode.sh | ||
8 | . unicode.sh | ||
9 | rm uni*code* | ||
10 | echo Done | ||