]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/bin/sh/parser/case1.0
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / bin / sh / parser / case1.0
1 # $FreeBSD$
2
3 keywords='if then else elif fi while until for do done { } case esac ! in'
4
5 # Keywords can be used unquoted in case statements, except the keyword
6 # esac as the first pattern of a '|' alternation without a starting '('.
7 # (POSIX doesn't seem to require (esac) to work.)
8 for k in $keywords; do
9         eval "case $k in (foo|$k) ;; *) echo bad ;; esac"
10         eval "case $k in ($k) ;; *) echo bad ;; esac"
11         eval "case $k in foo|$k) ;; *) echo bad ;; esac"
12         [ "$k" = esac ] && continue
13         eval "case $k in $k) ;; *) echo bad ;; esac"
14 done