1*3e3895bfSKrzysztof Piecuch# $FreeBSD: head/bin/sh/tests/builtins/break5.4 251180 2013-05-31 14:45:25Z jilles $ 2b1abb130SPeter Avalos 3b1abb130SPeter Avalos# Although this is not specified by POSIX, some configure scripts (gawk 4.1.0) 4b1abb130SPeter Avalos# appear to depend on it. 5b1abb130SPeter Avalos# In some uncommitted code, the subshell environment corrupted the outer 6b1abb130SPeter Avalos# shell environment's state. 7b1abb130SPeter Avalos 8b1abb130SPeter Avalos(for i in a b c; do 9b1abb130SPeter Avalos exit 3 10b1abb130SPeter Avalosdone) 11b1abb130SPeter Avalosbreak 12b1abb130SPeter Avalosexit 4 13