busybox/shell/ash_test/ash-signals/signal6.tests
Denys Vlasenko 0f01b00d74 add two more tests which currently fail
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2010-05-17 04:57:55 +02:00

4 lines
120 B
Plaintext
Executable File

# Bug: TERM does not trigger in the child
{ trap "echo got TERM" TERM; sleep 3; }& sleep 1; kill $!; wait
echo Done: $?