diff options
author | Denys Vlasenko | 2021-09-07 02:23:51 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-09-07 02:25:52 +0200 |
commit | e53c7dbafc78948e5c0d8d8ccb0bdcd9f936c62e (patch) | |
tree | 909286fc381d47fba921621afb809a84997815fc /shell/hush_test/hush-misc/exitcode_trap7.tests | |
parent | f415e21a7dce1d4f4b760fddfaba85c551681e11 (diff) | |
download | busybox-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-x | shell/hush_test/hush-misc/exitcode_trap7.tests | 7 |
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:$? |