busybox/shell/hush_test/hush-signals/signal6.tests
Denys Vlasenko 5d6b8729ed hush testsuite: add many tests from ash testsuite
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2016-10-02 17:39:31 +02:00

3 lines
78 B
Plaintext
Executable File

{ trap "echo got TERM" TERM; sleep 3; }& sleep 1; kill $!; wait
echo Done: $?