diff options
author | 2016-02-26 18:26:10 +0000 | |
---|---|---|
committer | 2016-02-26 18:26:10 +0000 | |
commit | 62b3e50e22a89b61c7fe69e0dc41f50fa41d3b52 (patch) | |
tree | 09ea5234fcf59c72c5c4268488f5666916ddaa89 | |
parent | Remove support for multiple symbol tables in ddb(4), we only have one. (diff) | |
download | wireguard-openbsd-62b3e50e22a89b61c7fe69e0dc41f50fa41d3b52.tar.xz wireguard-openbsd-62b3e50e22a89b61c7fe69e0dc41f50fa41d3b52.zip |
Add a test for negated POSIX characer classes.
-rw-r--r-- | regress/lib/libc/fnmatch/fnm_test.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/regress/lib/libc/fnmatch/fnm_test.in b/regress/lib/libc/fnmatch/fnm_test.in index c20077966d4..c2f218ae1b3 100644 --- a/regress/lib/libc/fnmatch/fnm_test.in +++ b/regress/lib/libc/fnmatch/fnm_test.in @@ -3,6 +3,7 @@ /bin/[[:opper:][:alnum:]]* /bin/ls 0x0 1 [[:alpha:][:alnum:]]*.c foo1.c 0x4 0 [[:upper:]]* FOO 0x0 0 +[![:space:]]* bar 0x0 0 # 'te\st' 'test'; no match if FNM_NOESCAPE te\st test 0x0 0 te\st test 0x1 1 |