aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/case10.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/case10.0')
-rw-r--r--shell_cmds/sh/tests/builtins/case10.016
1 files changed, 16 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/case10.0 b/shell_cmds/sh/tests/builtins/case10.0
new file mode 100644
index 0000000..e8cd933
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/case10.0
@@ -0,0 +1,16 @@
+# $FreeBSD: head/bin/sh/tests/builtins/case10.0 223546 2011-06-25 20:37:43Z jilles $
+
+case ! in
+[\!!]) ;;
+*) echo Failed at $LINENO ;;
+esac
+
+case ! in
+['!'!]) ;;
+*) echo Failed at $LINENO ;;
+esac
+
+case ! in
+["!"!]) ;;
+*) echo Failed at $LINENO ;;
+esac