mirror of https://github.com/mirror/busybox.git
add two more tests which currently fail
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>1_17_stable
parent
7c1ed9fbde
commit
0f01b00d74
|
@ -0,0 +1,2 @@
|
|||
got TERM
|
||||
Done: 0
|
|
@ -0,0 +1,3 @@
|
|||
# Bug: TERM does not trigger in the child
|
||||
{ trap "echo got TERM" TERM; sleep 3; }& sleep 1; kill $!; wait
|
||||
echo Done: $?
|
|
@ -0,0 +1,2 @@
|
|||
got TERM
|
||||
Done: 0
|
|
@ -0,0 +1,3 @@
|
|||
# Bug happens only if there is no space in "}&"
|
||||
{ trap "echo got TERM" TERM; sleep 3; }& sleep 1; kill $!; wait
|
||||
echo Done: $?
|
Loading…
Reference in New Issue