Use spaces for indentation, not tabs.
[gnulib.git] / tests / test-glob.c
1 /* Test of glob/globfree functions.
2    Copyright (C) 2009 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Simon Josefsson <simon@josefsson.org>, 2009.  */
18
19 #include <config.h>
20
21 #include <glob.h>
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #define ASSERT(expr)                                                    \
28   do                                                                    \
29     {                                                                   \
30       if (!(expr))                                                      \
31         {                                                               \
32           fprintf (stderr, "%s:%d: assertion failed\n",                 \
33                    __FILE__, __LINE__);                                 \
34           fflush (stderr);                                              \
35           abort ();                                                     \
36         }                                                               \
37     }                                                                   \
38   while (0)
39
40 #define GL_NO_SUCH_FILE "/gnulib-magic-does-not-exist"
41
42 int
43 main ()
44 {
45   int res;
46   glob_t g;
47
48   /* Make sure glob_t struct members exists. */
49   ASSERT (sizeof (g.gl_pathc));
50   ASSERT (sizeof (g.gl_pathv));
51   ASSERT (sizeof (g.gl_offs));
52
53   res = glob (".", 0, NULL, &g);
54   ASSERT (res == 0 && g.gl_pathc == 1);
55   globfree (&g);
56
57   res = glob (".", GLOB_NOSORT, NULL, &g);
58   ASSERT (res == 0 && g.gl_pathc == 1);
59   globfree (&g);
60
61   res = glob (".", GLOB_MARK, NULL, &g);
62   ASSERT (res == 0 && g.gl_pathc == 1);
63
64   res = glob (".", GLOB_APPEND, NULL, &g);
65   ASSERT (res == 0 && g.gl_pathc == 2);
66   globfree (&g);
67
68   res = glob (".", GLOB_NOESCAPE, NULL, &g);
69   ASSERT (res == 0 && g.gl_pathc == 1);
70   globfree (&g);
71
72   res = glob ("./*", 0, NULL, &g);
73   ASSERT (res == 0 && g.gl_pathc >= 1);
74   globfree (&g);
75
76   res = glob (GL_NO_SUCH_FILE, 0, NULL, &g);
77   ASSERT (res == GLOB_NOMATCH);
78
79   res = glob (GL_NO_SUCH_FILE, GLOB_NOCHECK, NULL, &g);
80   ASSERT (res == 0 && g.gl_pathc == 1);
81   ASSERT (strcmp (g.gl_pathv[0], GL_NO_SUCH_FILE) == 0);
82   globfree (&g);
83
84   return 0;
85 }