summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/break6.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/break6.0')
-rw-r--r--shell_cmds/sh/tests/builtins/break6.08
1 files changed, 8 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/break6.0 b/shell_cmds/sh/tests/builtins/break6.0
new file mode 100644
index 0000000..b5fc63b
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/break6.0
@@ -0,0 +1,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