maint: update all copyright year number ranges
[gnulib.git] / tests / test-system-quote-child.c
1 /* Child program invoked by test-system-quote-main.
2    Copyright (C) 2012-2013 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 fprintf
26
27 #define EXPECTED_DATA_FILE "t-sq-data.tmp"
28
29 int
30 main (int argc, char *argv[])
31 {
32   const char *arg;
33   char expected_data[1000];
34   size_t expected_data_len;
35
36   if (argc < 2)
37     /* Expected one data argument, received none.  */
38     return 2;
39   if (argc > 2)
40     /* Expected one data argument, received more than one.  */
41     return 3;
42   arg = argv[1];
43
44   /* Read the contents of EXPECTED_DATA_FILE.  */
45   {
46     FILE *fp = fopen (EXPECTED_DATA_FILE, "rb");
47     if (fp == NULL)
48       return 4;
49     expected_data_len = fread (expected_data, 1, sizeof (expected_data), fp);
50     if (fclose (fp))
51       return 5;
52   }
53
54   if (!(strlen (arg) == expected_data_len
55         && memcmp (arg, expected_data, expected_data_len) == 0))
56     {
57       /* arg is not as expected.  */
58       fprintf (stderr, "expected: %.*s\nreceived: %s\n",
59                (int)expected_data_len, expected_data, arg);
60       return 1;
61     }
62   else
63     return 0;
64 }