summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/exitcode_trap7.tests
diff options
context:
space:
mode:
authorDenys Vlasenko2021-09-07 02:23:51 +0200
committerDenys Vlasenko2021-09-07 02:25:52 +0200
commite53c7dbafc78948e5c0d8d8ccb0bdcd9f936c62e (patch)
tree909286fc381d47fba921621afb809a84997815fc /shell/hush_test/hush-misc/exitcode_trap7.tests
parentf415e21a7dce1d4f4b760fddfaba85c551681e11 (diff)
downloadbusybox-e53c7dbafc78948e5c0d8d8ccb0bdcd9f936c62e.zip
busybox-e53c7dbafc78948e5c0d8d8ccb0bdcd9f936c62e.tar.gz
hush: fix set -n to act immediately, not just after run_list()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-misc/exitcode_trap7.tests')
-rwxr-xr-xshell/hush_test/hush-misc/exitcode_trap7.tests7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/exitcode_trap7.tests b/shell/hush_test/hush-misc/exitcode_trap7.tests
new file mode 100755
index 0000000..f4b0eb5
--- /dev/null
+++ b/shell/hush_test/hush-misc/exitcode_trap7.tests
@@ -0,0 +1,7 @@
+$THIS_SH -c '
+cleanup() { set +e; false; }
+set -e
+trap cleanup EXIT
+echo Start
+'
+echo Ok:$?