diff options
Diffstat (limited to 'shell/hush_test/hush-misc/exitcode_trap2.tests')
-rwxr-xr-x | shell/hush_test/hush-misc/exitcode_trap2.tests | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/exitcode_trap2.tests b/shell/hush_test/hush-misc/exitcode_trap2.tests new file mode 100755 index 0000000..f259774 --- /dev/null +++ b/shell/hush_test/hush-misc/exitcode_trap2.tests @@ -0,0 +1,9 @@ +# "exit" in trap should not use last command's exitcode, +# but exitcode on entering the trap. +$THIS_SH -c ' + trap "false;exit" term + kill $$ & + (exit 42) + wait +' +echo 42:$? |