summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/case21.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/case21.0')
-rw-r--r--shell_cmds/sh/tests/builtins/case21.010
1 files changed, 10 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/case21.0 b/shell_cmds/sh/tests/builtins/case21.0
new file mode 100644
index 0000000..7d865f0
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/case21.0
@@ -0,0 +1,10 @@
+# $FreeBSD: head/bin/sh/tests/builtins/case21.0 318258 2017-05-13 20:28:32Z jilles $
+
+case 5 in
+[0$((-9))]) ;;
+*) echo bad1 ;;
+esac
+
+case - in
+[0$((-9))]) echo bad2 ;;
+esac