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 | |
parent | 1ff1a75710dd0c2d72d1f97f71caebdfeb185f6d (diff) | |
download | busybox-w32-111cdcf295b4cab78521480f52b295d9ae719263.tar.gz busybox-w32-111cdcf295b4cab78521480f52b295d9ae719263.tar.bz2 busybox-w32-111cdcf295b4cab78521480f52b295d9ae719263.zip |
shell: sync redir/* tests
Note: hush-redir/redir_to_bad_fd.tests currently fails
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash_test/ash-redir/redir5.right | 4 | ||||
-rwxr-xr-x | shell/ash_test/ash-redir/redir5.tests | 13 | ||||
-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 |
4 files changed, 22 insertions, 0 deletions
diff --git a/shell/ash_test/ash-redir/redir5.right b/shell/ash_test/ash-redir/redir5.right new file mode 100644 index 000000000..52cce4feb --- /dev/null +++ b/shell/ash_test/ash-redir/redir5.right | |||
@@ -0,0 +1,4 @@ | |||
1 | Backgrounded pipes shall have their stdin redirected to /dev/null | ||
2 | Zero:0 | ||
3 | Zero:0 | ||
4 | Done | ||
diff --git a/shell/ash_test/ash-redir/redir5.tests b/shell/ash_test/ash-redir/redir5.tests new file mode 100755 index 000000000..957f9c81f --- /dev/null +++ b/shell/ash_test/ash-redir/redir5.tests | |||
@@ -0,0 +1,13 @@ | |||
1 | echo "Backgrounded pipes shall have their stdin redirected to /dev/null" | ||
2 | |||
3 | # 1. bash does not redirect stdin to /dev/null if it is interactive. | ||
4 | # hush does it always (this is allowed by standards). | ||
5 | |||
6 | # 2. Failure will result in this script hanging | ||
7 | |||
8 | cat & wait; echo Zero:$? | ||
9 | |||
10 | # This does not work for bash! bash bug? | ||
11 | cat | cat & wait; echo Zero:$? | ||
12 | |||
13 | echo Done | ||
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 @@ | |||
1 | ./redir_to_bad_fd.tests: line 2: 10: Bad file descriptor | ||
2 | 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 @@ | |||
1 | # ash uses fd 10 (usually) for reading the script | ||
2 | echo LOST >&10 | ||
3 | echo OK | ||