commit | df303ae11731b07f63b7034a7c141931d7a6fcbb | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Sun Oct 02 18:32:52 2016 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Sun Oct 02 18:32:52 2016 +0200 |
tree | 39daf30ce526ee9d9cfb1ebe8326bd13588d8942 | |
parent | c7a774dde4b777126de5ef9f718b503a15bf4d30 [diff] [blame] |
sh testsuite: sync ash-redir/ and hush-redir/ Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/hush_test/hush-redir/redir_multi.tests b/shell/hush_test/hush-redir/redir_multi.tests new file mode 100755 index 0000000..c639ebb --- /dev/null +++ b/shell/hush_test/hush-redir/redir_multi.tests
@@ -0,0 +1,5 @@ +echo "Testing multiple redirections to same fd" +# bug was making us lose fd #1 after this: +echo Hello >/dev/null 1>&2 +echo Done1 +echo Done2 >&2