truncate: New module.
[gnulib/ericb.git] / tests / test-filenamecat.c
blobb4d65817ecee5fc329e5c6e43456906b58570e37
1 /* Test of concatenation of two arbitrary file names.
3 Copyright (C) 1996-2007, 2009-2017 Free Software Foundation, Inc.
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.
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.
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/>. */
18 /* Written by Jim Meyering. */
20 #include <config.h>
22 #include "filenamecat.h"
24 #include <stdbool.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
30 int
31 main (int argc _GL_UNUSED, char *argv[])
33 static char const *const tests[][3] =
35 {"a", "b", "a/b"},
36 {"a/", "b", "a/b"},
37 {"a/", "/b", "a/b"},
38 {"a", "/b", "a/b"},
40 {"/", "b", "/b"},
41 {"/", "/b", "/b"},
42 {"/", "/", "/"},
43 {"a", "/", "a/"}, /* this might deserve a diagnostic */
44 {"/a", "/", "/a/"}, /* this might deserve a diagnostic */
45 {"a", "//b", "a/b"},
46 {"", "a", "a"}, /* this might deserve a diagnostic */
48 unsigned int i;
49 bool fail = false;
51 for (i = 0; i < sizeof tests / sizeof tests[0]; i++)
53 char *base_in_result;
54 char const *const *t = tests[i];
55 char *res = file_name_concat (t[0], t[1], &base_in_result);
56 if (strcmp (res, t[2]) != 0)
58 fprintf (stderr, "test #%u: got %s, expected %s\n", i, res, t[2]);
59 fail = true;
62 exit (fail ? EXIT_FAILURE : EXIT_SUCCESS);