blob: a803aaff7c08718b3f8e406b80a7fcacc6c3f022 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# $FreeBSD: releng/12.0/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
|