aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/break6.0
blob: b5fc63bf96f17c9279f308aea8d7e0113cb97061 (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: head/bin/sh/tests/builtins/break6.0 268927 2014-07-20 20:29:09Z jilles $
# Per POSIX, this need only work if LONG_MAX > 4294967295.

while :; do
	break 4294967296
	echo bad
	exit 3
done