opnsense-src/tools/regression/bin/sh/parser/case1.0
Jilles Tjoelker f5fa4d2e65 MFC r206143,r206148,r206149,r206167,r206491,r206817,r207127,r207824
Various testcases that work correctly with stable/8 sh.
2010-05-13 17:22:00 +00:00

14 lines
534 B
Text

# $FreeBSD$
keywords='if then else elif fi while until for do done { } case esac ! in'
# Keywords can be used unquoted in case statements, except the keyword
# esac as the first pattern of a '|' alternation without a starting '('.
# (POSIX doesn't seem to require (esac) to work.)
for k in $keywords; do
eval "case $k in (foo|$k) ;; *) echo bad ;; esac"
eval "case $k in ($k) ;; *) echo bad ;; esac"
eval "case $k in foo|$k) ;; *) echo bad ;; esac"
[ "$k" = esac ] && continue
eval "case $k in $k) ;; *) echo bad ;; esac"
done