You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
344 B
15 lines
344 B
#!/bin/sh |
|
|
|
# Check termination signal forwarding. |
|
|
|
. "${srcdir=.}/init.sh" |
|
|
|
run_expect_termsig="../run_expect_termsig 15" |
|
unblock_reset_raise="../unblock_reset_raise 15" |
|
|
|
run_prog $run_expect_termsig $unblock_reset_raise |
|
STRACE="$run_expect_termsig $STRACE" |
|
|
|
for i in 1 2 3 4; do |
|
run_strace -I$i -enone -esignal=none $unblock_reset_raise |
|
done
|
|
|