diff options
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-read/read_SIGCHLD.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-read/read_SIGCHLD.tests | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/hush_test/hush-read/read_SIGCHLD.right b/shell/hush_test/hush-read/read_SIGCHLD.right new file mode 100644 index 000000000..b3dc7ab0c --- /dev/null +++ b/shell/hush_test/hush-read/read_SIGCHLD.right @@ -0,0 +1,2 @@ +x='Ok' +exitcode:0 diff --git a/shell/hush_test/hush-read/read_SIGCHLD.tests b/shell/hush_test/hush-read/read_SIGCHLD.tests new file mode 100755 index 000000000..c5f673aff --- /dev/null +++ b/shell/hush_test/hush-read/read_SIGCHLD.tests @@ -0,0 +1,4 @@ +x=BAD +{ sleep 0.4; echo Ok; } | { sleep 0.2 & read x; echo "x='$x'"; } +echo "exitcode:$?" + |