pty: Activate the signature wrapper of forkpty.
[gnulib.git] / tests / test-filenamecat.c
1 /* Test of concatenation of two arbitrary file names.
2
3    Copyright (C) 1996-2007, 2009-2013 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 #include "progname.h"
30
31 int
32 main (int argc _GL_UNUSED, char *argv[])
33 {
34   static char const *const tests[][3] =
35     {
36       {"a", "b",   "a/b"},
37       {"a/", "b",  "a/b"},
38       {"a/", "/b", "a/b"},
39       {"a", "/b",  "a/b"},
40
41       {"/", "b",  "/b"},
42       {"/", "/b", "/b"},
43       {"/", "/",  "/"},
44       {"a", "/",  "a/"},   /* this might deserve a diagnostic */
45       {"/a", "/", "/a/"},  /* this might deserve a diagnostic */
46       {"a", "//b",  "a/b"},
47       {"", "a", "a"},  /* this might deserve a diagnostic */
48     };
49   unsigned int i;
50   bool fail = false;
51
52   set_program_name (argv[0]);
53
54   for (i = 0; i < sizeof tests / sizeof tests[0]; i++)
55     {
56       char *base_in_result;
57       char const *const *t = tests[i];
58       char *res = file_name_concat (t[0], t[1], &base_in_result);
59       if (strcmp (res, t[2]) != 0)
60         {
61           fprintf (stderr, "test #%u: got %s, expected %s\n", i, res, t[2]);
62           fail = true;
63         }
64     }
65   exit (fail ? EXIT_FAILURE : EXIT_SUCCESS);
66 }