diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-14 13:36:48 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-14 13:36:48 +0200 |
commit | 9fda609a60506f4c1f73f0034cafd2b3434f4df3 (patch) | |
tree | d3ea98fe9f47577162a884ec6cd1a6b233e72bc4 /shell/hush_test/hush-misc | |
parent | 75e90b15482184db83f03c67b53d4220888c6c9d (diff) | |
download | busybox-w32-9fda609a60506f4c1f73f0034cafd2b3434f4df3.tar.gz busybox-w32-9fda609a60506f4c1f73f0034cafd2b3434f4df3.tar.bz2 busybox-w32-9fda609a60506f4c1f73f0034cafd2b3434f4df3.zip |
hush: add support for "set -e"
function old new delta
run_list 978 1046 +68
o_opt_strings 24 32 +8
reset_traps_to_defaults 136 142 +6
pick_sighandler 57 60 +3
packed_usage 31772 31770 -2
hush_main 983 961 -22
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 4/2 up/down: 85/-24) Total: 61 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-misc')
-rw-r--r-- | shell/hush_test/hush-misc/errexit1.right | 1 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/errexit1.tests | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/errexit1.right b/shell/hush_test/hush-misc/errexit1.right new file mode 100644 index 000000000..d86bac9de --- /dev/null +++ b/shell/hush_test/hush-misc/errexit1.right | |||
@@ -0,0 +1 @@ | |||
OK | |||
diff --git a/shell/hush_test/hush-misc/errexit1.tests b/shell/hush_test/hush-misc/errexit1.tests new file mode 100755 index 000000000..7b4a15634 --- /dev/null +++ b/shell/hush_test/hush-misc/errexit1.tests | |||
@@ -0,0 +1,5 @@ | |||
1 | set -e | ||
2 | (true) | ||
3 | echo OK | ||
4 | (false) | ||
5 | echo FAIL | ||