3
0

exitcode_trap2.tests 173 B

123456789
  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:$?