add a testcase for reopened bug 585 (not fixed yet)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
ddf7850f2b
commit
795633463a
@ -2,7 +2,9 @@
|
||||
# 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
|
||||
|
||||
>unicode.sh
|
||||
echo -e 'echo Ok >uni\x81code' >>unicode.sh
|
||||
echo -e 'cat uni\x81code' >>unicode.sh
|
||||
echo -e 'cat uni?code' >>unicode.sh
|
||||
. unicode.sh
|
||||
|
3
shell/ash_test/ash-redir/redir8.right
Normal file
3
shell/ash_test/ash-redir/redir8.right
Normal file
@ -0,0 +1,3 @@
|
||||
Ok
|
||||
Ok
|
||||
Done
|
15
shell/ash_test/ash-redir/redir8.tests
Executable file
15
shell/ash_test/ash-redir/redir8.tests
Executable file
@ -0,0 +1,15 @@
|
||||
# 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.
|
||||
|
||||
# Subcase when redirect filename is specified in a variable.
|
||||
|
||||
>unicode.sh
|
||||
echo -e 'v=uni\x81code' >>unicode.sh
|
||||
echo -e 'echo Ok >"$v"' >>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 New Issue
Block a user