ash,hush: testcase for "exit" without arguments in a trap
[oweals/busybox.git] / shell / ash_test / ash-misc / exitcode_trap2.tests
1 # "exit" in trap should not use last command's exitcode,
2 # but exitcode on entering the trap.
3 $THIS_SH -c '
4  trap "false;exit" term
5  kill $$ &
6  (exit 42)
7  wait
8 '
9 echo 42:$?