diff options
author | Denys Vlasenko | 2023-05-25 14:22:10 +0200 |
---|---|---|
committer | Denys Vlasenko | 2023-05-25 14:22:10 +0200 |
commit | 6824298ab4d3da40763af4d2d466a72745b8b593 (patch) | |
tree | 13382dd9610b5154e79ad971f17f1dc54f13ea1a /shell/ash_test/ash-misc/elif2.tests | |
parent | 3e83699ce23400d75c7ddaa7ebfdec015177caa7 (diff) | |
download | busybox-6824298ab4d3da40763af4d2d466a72745b8b593.zip busybox-6824298ab4d3da40763af4d2d466a72745b8b593.tar.gz |
hush: fix ELIF cmd1;cmd2 THEN ... not executing cmd2, closes 15571
function old new delta
run_list 1012 1024 +12
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-misc/elif2.tests')
-rwxr-xr-x | shell/ash_test/ash-misc/elif2.tests | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/elif2.tests b/shell/ash_test/ash-misc/elif2.tests new file mode 100755 index 0000000..3e5876f --- /dev/null +++ b/shell/ash_test/ash-misc/elif2.tests @@ -0,0 +1,8 @@ +if true; then + echo "THEN" +elif echo "ELIF false"; false; then + echo "ELIF THEN" +else + echo "ELSE" +fi +echo "Ok:$?" |