aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/break3.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/break3.0')
-rw-r--r--shell_cmds/sh/tests/builtins/break3.015
1 files changed, 15 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/break3.0 b/shell_cmds/sh/tests/builtins/break3.0
new file mode 100644
index 0000000..1a6985c
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/break3.0
@@ -0,0 +1,15 @@
+# $FreeBSD: head/bin/sh/tests/builtins/break3.0 211612 2010-08-22 11:07:46Z jilles $
+
+# We accept this and people might rely on it.
+# However, various other shells do not accept it.
+
+f() {
+ break
+ echo bad1
+}
+
+while :; do
+ f
+ echo bad2
+ exit 2
+done