Prefer <config.h> over "config.h". See autoconf doc for explanation.
[gnulib.git] / tests / test-filenamecat.c
1 /* Test of concatenation of two arbitrary file names.
2
3    Copyright (C) 1996-2007 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Jim Meyering.  */
19
20 #include <config.h>
21
22 #include "filenamecat.h"
23
24 #include <stdbool.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 int
30 main ()
31 {
32   static char const *const tests[][3] =
33     {
34       {"a", "b",   "a/b"},
35       {"a/", "b",  "a/b"},
36       {"a/", "/b", "a/b"},
37       {"a", "/b",  "a/b"},
38
39       {"/", "b",  "/b"},
40       {"/", "/b", "/b"},
41       {"/", "/",  "/"},
42       {"a", "/",  "a/"},   /* this might deserve a diagnostic */
43       {"/a", "/", "/a/"},  /* this might deserve a diagnostic */
44       {"a", "//b",  "a/b"},
45       {"", "a", "a"},  /* this might deserve a diagnostic */
46     };
47   unsigned int i;
48   bool fail = false;
49   for (i = 0; i < sizeof tests / sizeof tests[0]; i++)
50     {
51       char *base_in_result;
52       char const *const *t = tests[i];
53       char *res = file_name_concat (t[0], t[1], &base_in_result);
54       if (strcmp (res, t[2]) != 0)
55         {
56           fprintf (stderr, "test #%u: got %s, expected %s\n", i, res, t[2]);
57           fail = true;
58         }
59     }
60   exit (fail ? EXIT_FAILURE : EXIT_SUCCESS);
61 }