]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/break6.0
shell_cmds-198.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / break6.0
1 # $FreeBSD$
2 # Per POSIX, this need only work if LONG_MAX > 4294967295.
3
4 while :; do
5 break 4294967296
6 echo bad
7 exit 3
8 done