aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/exitcode_trap2.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/exitcode_trap2.tests')
-rwxr-xr-xshell/hush_test/hush-misc/exitcode_trap2.tests9
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 000000000..f259774bf
--- /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:$?