diff options
| author | Jilles Tjoelker <jilles@FreeBSD.org> | 2013-11-24 22:45:49 +0000 |
|---|---|---|
| committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2013-11-24 22:45:49 +0000 |
| commit | 82baac57778a50aad3ed21177aa5320ef4bad022 (patch) | |
| tree | eeca1aa4c430d5e8b90fdec2b069dfbac5c42bab /tools | |
| parent | 702701714b947bdd3bfba79c7054bd24fe229591 (diff) | |
Notes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/regression/bin/sh/execution/bg7.0 | 5 | ||||
| -rw-r--r-- | tools/regression/bin/sh/execution/bg8.0 | 5 | ||||
| -rw-r--r-- | tools/regression/bin/sh/execution/bg9.0 | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/tools/regression/bin/sh/execution/bg7.0 b/tools/regression/bin/sh/execution/bg7.0 new file mode 100644 index 0000000000000..f771edc56cdee --- /dev/null +++ b/tools/regression/bin/sh/execution/bg7.0 @@ -0,0 +1,5 @@ +# $FreeBSD$ +# The redirection does not apply to the background command, and therefore +# does not override the implicit </dev/null. + +echo bad | ${SH} -c '</dev/null; { cat & wait; }' diff --git a/tools/regression/bin/sh/execution/bg8.0 b/tools/regression/bin/sh/execution/bg8.0 new file mode 100644 index 0000000000000..33667cb1922bf --- /dev/null +++ b/tools/regression/bin/sh/execution/bg8.0 @@ -0,0 +1,5 @@ +# $FreeBSD$ +# The redirection does not apply to the background command, and therefore +# does not override the implicit </dev/null. + +echo bad | ${SH} -c 'command eval \) </dev/null 2>/dev/null; { cat & wait; }' diff --git a/tools/regression/bin/sh/execution/bg9.0 b/tools/regression/bin/sh/execution/bg9.0 new file mode 100644 index 0000000000000..64fde3e3e333a --- /dev/null +++ b/tools/regression/bin/sh/execution/bg9.0 @@ -0,0 +1,5 @@ +# $FreeBSD$ +# The redirection does not apply to the background command, and therefore +# does not override the implicit </dev/null. + +echo bad | ${SH} -c 'command eval eval \\\) \</dev/null 2>/dev/null; { cat & wait; }' |
