]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/case13.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / case13.0
1 # $FreeBSD: head/bin/sh/tests/builtins/case13.0 228943 2011-12-28 23:51:17Z jilles $
2
3 case ^ in
4 [\^^]) ;;
5 *) echo Failed at $LINENO ;;
6 esac
7
8 case s in
9 [\^^]) echo Failed at $LINENO ;;
10 [s\]]) ;;
11 *) echo Failed at $LINENO ;;
12 esac