mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
ash: add testsuite for bug 585
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
c8334a40c9
commit
9f2e82ad2e
2 changed files with 13 additions and 0 deletions
3
shell/ash_test/ash-redir/redir7.right
Normal file
3
shell/ash_test/ash-redir/redir7.right
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Ok
|
||||
Ok
|
||||
Done
|
||||
10
shell/ash_test/ash-redir/redir7.tests
Executable file
10
shell/ash_test/ash-redir/redir7.tests
Executable file
|
|
@ -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
|
||||
Loading…
Reference in a new issue