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