diff options
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:$? |