aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/exitcode_trap2.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-misc/exitcode_trap2.tests')
-rwxr-xr-xshell/ash_test/ash-misc/exitcode_trap2.tests9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/exitcode_trap2.tests b/shell/ash_test/ash-misc/exitcode_trap2.tests
new file mode 100755
index 000000000..f259774bf
--- /dev/null
+++ b/shell/ash_test/ash-misc/exitcode_trap2.tests
@@ -0,0 +1,9 @@
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'
9echo 42:$?