diff options
author | Ron Yorston <rmy@pobox.com> | 2017-08-02 11:33:53 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-08-02 11:33:53 +0100 |
commit | 8e20d4e9264a30dcc6d652943211668b1a6fe85b (patch) | |
tree | 7a7dcd4d55e2eb83374aed059a873486451c82e9 /shell/hush_test/hush-redir/redir_script.tests | |
parent | c8b51e5f274ff044ba2f9f350ead478d6c2063aa (diff) | |
parent | ec05df13b0f3bc69074909f078f981f417d95c89 (diff) | |
download | busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.tar.gz busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.tar.bz2 busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'shell/hush_test/hush-redir/redir_script.tests')
-rwxr-xr-x | shell/hush_test/hush-redir/redir_script.tests | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/shell/hush_test/hush-redir/redir_script.tests b/shell/hush_test/hush-redir/redir_script.tests index ccc497d7b..740daa461 100755 --- a/shell/hush_test/hush-redir/redir_script.tests +++ b/shell/hush_test/hush-redir/redir_script.tests | |||
@@ -20,10 +20,15 @@ eval "find_fds $fds" | |||
20 | 20 | ||
21 | # Shell should not lose that fd. Did it? | 21 | # Shell should not lose that fd. Did it? |
22 | find_fds | 22 | find_fds |
23 | test x"$fds1" = x"$fds" && { echo "Ok: script fd is not closed"; exit 0; } | 23 | test x"$fds1" = x"$fds" \ |
24 | && { echo "Ok: script fd is not closed"; exit 0; } | ||
25 | |||
26 | # One legit way to handle it is to move script fd. For example, if we see that fd 10 moved to fd 11: | ||
27 | test x"$fds1" = x" 10>&- 3>&-" && \ | ||
28 | test x"$fds" = x" 11>&- 3>&-" \ | ||
29 | && { echo "Ok: script fd is not closed"; exit 0; } | ||
24 | 30 | ||
25 | echo "Bug: script fd is closed" | 31 | echo "Bug: script fd is closed" |
26 | echo "fds1:$fds1" | 32 | echo "fds1:$fds1" |
27 | echo "fds2:$fds" | 33 | echo "fds2:$fds" |
28 | exit 1 | 34 | exit 1 |
29 | |||