busybox/shell/hush_test/hush-misc/case4.tests
Denys Vlasenko d029e80187 hush: remove the is_blank dance
function                                             old     new   delta
parse_stream                                        2566    2524     -42

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-08-14 04:04:57 +02:00

8 lines
189 B
Text
Executable file

if=if
case if in
if) echo "Keyword-like word may be in pattern";;
fi) echo "Not reached";;
# esac) echo "Not reached";; # not accepted by bash 5.2.15
do) echo "Not reached"
esac
echo Ok:$?