diff options
Diffstat (limited to 'shell/hush_test/hush-signals/reap1.tests')
-rwxr-xr-x | shell/hush_test/hush-signals/reap1.tests | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/hush_test/hush-signals/reap1.tests b/shell/hush_test/hush-signals/reap1.tests new file mode 100755 index 0000000..bf1a1f9 --- /dev/null +++ b/shell/hush_test/hush-signals/reap1.tests @@ -0,0 +1,14 @@ +#!/bin/sh + +# Must not find us alive +{ sleep 2; kill -9 $$; } 2>/dev/null & + +sleep 1 & +PID=$! + +# We must exit the loop in one second. +# We had bug 5304: builtins never waited for exited children +while kill -0 $PID >/dev/null 2>&1; do + true +done +echo Ok |