diff options
| author | Jilles Tjoelker <jilles@FreeBSD.org> | 2011-06-25 20:37:43 +0000 |
|---|---|---|
| committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2011-06-25 20:37:43 +0000 |
| commit | b5845df38421ec9354adee156d9942cebd86e07d (patch) | |
| tree | ff58ba9c0d57d4b8cc3a84bae919b71d4273aa6c /tools | |
| parent | afd03ac8b0c5e3016e0f09a054bedd979905c0cd (diff) | |
Notes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/regression/bin/sh/builtins/case10.0 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/regression/bin/sh/builtins/case10.0 b/tools/regression/bin/sh/builtins/case10.0 new file mode 100644 index 000000000000..a627b5cd996f --- /dev/null +++ b/tools/regression/bin/sh/builtins/case10.0 @@ -0,0 +1,16 @@ +# $FreeBSD$ + +case ! in +[\!!]) ;; +*) echo Failed at $LINENO ;; +esac + +case ! in +['!'!]) ;; +*) echo Failed at $LINENO ;; +esac + +case ! in +["!"!]) ;; +*) echo Failed at $LINENO ;; +esac |
