ash: add slightly different testcase

This commit is contained in:
Denis Vlasenko
2008-07-26 14:20:04 +00:00
parent 160e6fa53a
commit 8dbea7dbb1
4 changed files with 23 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/sh
$THIS_SH -c '
hup() {
echo "child got HUP"
}
trap hup HUP
echo "child sleeps"
sleep 1
echo "child exits"
' &
child=$!
sleep 0.1 # let child install handler first
kill -HUP $child
wait
echo "parent exits"