File: tst-fnmatch2.c

package info (click to toggle)
glibc 2.19-11
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 202,392 kB
  • ctags: 140,042
  • sloc: ansic: 969,214; asm: 241,208; sh: 10,046; makefile: 8,471; cpp: 3,595; perl: 2,077; pascal: 1,839; awk: 1,704; yacc: 317; sed: 73
file content (40 lines) | stat: -rw-r--r-- 1,057 bytes parent folder | download | duplicates (43)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <fnmatch.h>
#include <stdio.h>

int
do_test (void)
{
  char pattern[] = "a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s*t*u*v*w*x*y*z*";
  const char *string = "aaaabbbbccccddddeeeeffffgggghhhhiiiijjjjkkkkllllmmmm"
		       "nnnnooooppppqqqqrrrrssssttttuuuuvvvvwwwwxxxxyyyy";
  if (fnmatch (pattern, string, 0) != FNM_NOMATCH)
    {
      puts ("First fnmatch didn't return FNM_NOMATCH");
      return 1;
    }
  pattern[(sizeof pattern) - 3] = '*';
  if (fnmatch (pattern, string, 0) != 0)
    {
      puts ("Second fnmatch didn't return 0");
      return 1;
    }
  if (fnmatch ("a*b/*", "abbb/.x", FNM_PATHNAME | FNM_PERIOD) != FNM_NOMATCH)
    {
      puts ("Third fnmatch didn't return FNM_NOMATCH");
      return 1;
    }
  if (fnmatch ("a*b/*", "abbb/xy", FNM_PATHNAME | FNM_PERIOD) != 0)
    {
      puts ("Fourth fnmatch didn't return 0");
      return 1;
    }
  if (fnmatch ("[", "[", 0) != 0)
    {
      puts ("Fifth fnmatch didn't return 0");
      return 1;
    }
  return 0;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"