hush testsuite: add many tests from ash testsuite
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
18
shell/hush_test/hush-signals/signal2.tests
Executable file
18
shell/hush_test/hush-signals/signal2.tests
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
$THIS_SH -c '
|
||||
cleanup() {
|
||||
echo "child exits as expected"
|
||||
exit
|
||||
}
|
||||
trap cleanup HUP
|
||||
echo "child sleeps"
|
||||
sleep 1
|
||||
echo "BAD exit from child!"
|
||||
' &
|
||||
|
||||
child=$!
|
||||
sleep 0.1 # let child install handler first
|
||||
kill -HUP $child
|
||||
wait
|
||||
echo "parent exits"
|
||||
Reference in New Issue
Block a user