diff options
-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 | ||