diff options
author | millert <> | 2016-02-26 18:26:10 +0000 |
---|---|---|
committer | millert <> | 2016-02-26 18:26:10 +0000 |
commit | 74e647f5a3f7cae827611541cd5ea1673fab91a1 (patch) | |
tree | aa53ce4a33fc6b994fccf45335e50c67d95ba801 /src | |
parent | a27037183b35dae9022d7018dc59d25e7e6d78be (diff) | |
download | openbsd-74e647f5a3f7cae827611541cd5ea1673fab91a1.tar.gz openbsd-74e647f5a3f7cae827611541cd5ea1673fab91a1.tar.bz2 openbsd-74e647f5a3f7cae827611541cd5ea1673fab91a1.zip |
Add a test for negated POSIX characer classes.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libc/fnmatch/fnm_test.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regress/lib/libc/fnmatch/fnm_test.in b/src/regress/lib/libc/fnmatch/fnm_test.in index c20077966d..c2f218ae1b 100644 --- a/src/regress/lib/libc/fnmatch/fnm_test.in +++ b/src/regress/lib/libc/fnmatch/fnm_test.in | |||
@@ -3,6 +3,7 @@ | |||
3 | /bin/[[:opper:][:alnum:]]* /bin/ls 0x0 1 | 3 | /bin/[[:opper:][:alnum:]]* /bin/ls 0x0 1 |
4 | [[:alpha:][:alnum:]]*.c foo1.c 0x4 0 | 4 | [[:alpha:][:alnum:]]*.c foo1.c 0x4 0 |
5 | [[:upper:]]* FOO 0x0 0 | 5 | [[:upper:]]* FOO 0x0 0 |
6 | [![:space:]]* bar 0x0 0 | ||
6 | # 'te\st' 'test'; no match if FNM_NOESCAPE | 7 | # 'te\st' 'test'; no match if FNM_NOESCAPE |
7 | te\st test 0x0 0 | 8 | te\st test 0x0 0 |
8 | te\st test 0x1 1 | 9 | te\st test 0x1 1 |