diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-06 21:01:50 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-06 21:01:50 +0200 |
commit | 111cdcf295b4cab78521480f52b295d9ae719263 (patch) | |
tree | 9b2c069f7b6fe89db29ed2c4d6181ca74e8687c1 /shell/hush_test | |
parent | 1ff1a75710dd0c2d72d1f97f71caebdfeb185f6d (diff) | |
download | busybox-111cdcf295b4cab78521480f52b295d9ae719263.tar.gz |
shell: sync redir/* tests
Note: hush-redir/redir_to_bad_fd.tests currently fails
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-redir/redir_to_bad_fd.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-redir/redir_to_bad_fd.tests | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/hush_test/hush-redir/redir_to_bad_fd.right b/shell/hush_test/hush-redir/redir_to_bad_fd.right new file mode 100644 index 000000000..43b8af293 --- /dev/null +++ b/shell/hush_test/hush-redir/redir_to_bad_fd.right @@ -0,0 +1,2 @@ +./redir_to_bad_fd.tests: line 2: 10: Bad file descriptor +OK diff --git a/shell/hush_test/hush-redir/redir_to_bad_fd.tests b/shell/hush_test/hush-redir/redir_to_bad_fd.tests new file mode 100755 index 000000000..91b0c1ff9 --- /dev/null +++ b/shell/hush_test/hush-redir/redir_to_bad_fd.tests @@ -0,0 +1,3 @@ +# ash uses fd 10 (usually) for reading the script +echo LOST >&10 +echo OK |