diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-07-28 12:42:08 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-07-28 12:42:08 +0200 |
commit | a5db1d7354977fe295882ff557e8f5fb23741b13 (patch) | |
tree | fab0fd9d857d1e9de4ed030c03e194e18312f28f /shell/ash_test | |
parent | a8e7441176ec945a1bfb117a1067ac3a6680a19c (diff) | |
download | busybox-w32-a5db1d7354977fe295882ff557e8f5fb23741b13.tar.gz busybox-w32-a5db1d7354977fe295882ff557e8f5fb23741b13.tar.bz2 busybox-w32-a5db1d7354977fe295882ff557e8f5fb23741b13.zip |
hush: fix another case where empty "for" wasn't setting exitcode to 0
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
-rw-r--r-- | shell/ash_test/ash-misc/empty_for1.right | 1 | ||||
-rwxr-xr-x | shell/ash_test/ash-misc/empty_for1.tests | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/empty_for1.right b/shell/ash_test/ash-misc/empty_for1.right new file mode 100644 index 000000000..46ffcece7 --- /dev/null +++ b/shell/ash_test/ash-misc/empty_for1.right | |||
@@ -0,0 +1 @@ | |||
Zero:0 | |||
diff --git a/shell/ash_test/ash-misc/empty_for1.tests b/shell/ash_test/ash-misc/empty_for1.tests new file mode 100755 index 000000000..5a2554d54 --- /dev/null +++ b/shell/ash_test/ash-misc/empty_for1.tests | |||
@@ -0,0 +1,5 @@ | |||
1 | false | ||
2 | for v; do | ||
3 | exit 2 | ||
4 | done | ||
5 | echo Zero:$? | ||