Sign in
coral
/
busybox
/
5fa5c4bde8b9ab75fa0ed37ee2fafca3fd46288a
/
.
/
shell
/
hush_test
/
hush-misc
/
exitcode_trap6.tests
blob: 59a07fc912bb4e8cad8eaad29e1f3e059d6f1dd7 [
file
] [
log
] [
blame
]
# "exit" in trap should not use last command's exitcode,
# but exitcode on entering the trap.
# Nested trap should not interfere with this.
$THIS_SH
-
c
'
trap "echo INT" int
trap "kill -int $$;exit" term
kill $$ &
(sleep 1; exit 42)
'
echo
42
:
$
?