blob: 67b4500f477749a995e46ae5c90dc5b993946248 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# If job control is disabled, skip the test
test "`type jobs`" = "jobs is a shell builtin" || exit 77
exec 2>&1
$THIS_SH -c 'kill -9 $$'
echo 137:$?
! $THIS_SH -c 'kill -9 $$'
echo 0:$?
echo Done
|