exitcode_trap2.tests 176 B

12345678
  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. (sleep 1; exit 42)
  7. '
  8. echo 42:$?