Sign in
coral
/
busybox
/
3ced804e3118d138781c3e4baa6bf1589b9f2dfd
/
.
/
shell
/
ash_test
/
ash-misc
/
exitcode_trap6.tests
blob: 15fb99d2ded6c5c6421614a2675274342d31495c [
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 $$ &
(exit 42)
wait
'
echo
42
:
$
?