]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/bin/sh/builtins/break5.4
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / regression / bin / sh / builtins / break5.4
1 # $FreeBSD$
2
3 # Although this is not specified by POSIX, some configure scripts (gawk 4.1.0)
4 # appear to depend on it.
5 # In some uncommitted code, the subshell environment corrupted the outer
6 # shell environment's state.
7
8 (for i in a b c; do
9         exit 3
10 done)
11 break
12 exit 4