diff options
Diffstat (limited to 'shell/ash_test/ash-misc/exitcode_trap6.tests')
-rwxr-xr-x | shell/ash_test/ash-misc/exitcode_trap6.tests | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/exitcode_trap6.tests b/shell/ash_test/ash-misc/exitcode_trap6.tests new file mode 100755 index 0000000..15fb99d --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode_trap6.tests @@ -0,0 +1,11 @@ +# "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:$? |