aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/redir5.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/redir5.tests')
-rwxr-xr-xshell/hush_test/hush-misc/redir5.tests13
1 files changed, 0 insertions, 13 deletions
diff --git a/shell/hush_test/hush-misc/redir5.tests b/shell/hush_test/hush-misc/redir5.tests
deleted file mode 100755
index 957f9c81f..000000000
--- a/shell/hush_test/hush-misc/redir5.tests
+++ /dev/null
@@ -1,13 +0,0 @@
-echo "Backgrounded pipes shall have their stdin redirected to /dev/null"
-
-# 1. bash does not redirect stdin to /dev/null if it is interactive.
-# hush does it always (this is allowed by standards).
-
-# 2. Failure will result in this script hanging
-
-cat & wait; echo Zero:$?
-
-# This does not work for bash! bash bug?
-cat | cat & wait; echo Zero:$?
-
-echo Done