busybox/shell/ash_test/ash-signals/signal6.tests

4 lines
120 B
Plaintext
Raw Normal View History

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