maint: update copyright
[gnulib.git] / tests / test-system-quote-child.c
1 /* Child program invoked by test-system-quote-main.
2    Copyright (C) 2012-2014 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, or (at your option)
7    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 #include <config.h>
18
19 #include <stdio.h>
20 #include <string.h>
21
22 /* Do not use any gnulib replacements, since this program should
23    link against as few libraries as possible.  */
24 #undef fclose
25 #undef fopen
26 #undef fprintf
27 #undef fread
28
29 #define EXPECTED_DATA_FILE "t-sq-data.tmp"
30
31 int
32 main (int argc, char *argv[])
33 {
34   const char *arg;
35   char expected_data[1000];
36   size_t expected_data_len;
37
38   if (argc < 2)
39     /* Expected one data argument, received none.  */
40     return 2;
41   if (argc > 2)
42     /* Expected one data argument, received more than one.  */
43     return 3;
44   arg = argv[1];
45
46   /* Read the contents of EXPECTED_DATA_FILE.  */
47   {
48     FILE *fp = fopen (EXPECTED_DATA_FILE, "rb");
49     if (fp == NULL)
50       return 4;
51     expected_data_len = fread (expected_data, 1, sizeof (expected_data), fp);
52     if (fclose (fp))
53       return 5;
54   }
55
56   if (!(strlen (arg) == expected_data_len
57         && memcmp (arg, expected_data, expected_data_len) == 0))
58     {
59       /* arg is not as expected.  */
60       fprintf (stderr, "expected: %.*s\nreceived: %s\n",
61                (int)expected_data_len, expected_data, arg);
62       return 1;
63     }
64   else
65     return 0;
66 }