hush/shell/ash_test/ash-signals/signal5.tests
Denys Vlasenko 27ff681cfa ash: add two testcases for (not yet fixed) ash bugs
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2010-05-17 02:56:18 +02:00

15 lines
280 B
Plaintext
Executable File

# Not fixed yet
trap "echo USR1 received" USR1
stub() {
echo "sleeping for $1 sec"
sleep $1
echo "$1 sec passed, sending USR1 to parent"
kill -USR1 $$
}
stub 2 &
stub 1 &
until { echo "Waiting"; wait; } do
echo "Wait exit code: $?"
done
echo "Wait returned 0"