Declare file-scope functions and variables static if not exported.
[bpt/emacs.git] / lib-src / test-distrib.c
CommitLineData
b3ae7a0a
GM
1/* test-distrib.c --- testing distribution of nonprinting chars
2
73b0cd50 3Copyright (C) 1987, 1993-1995, 1999, 2001-2011 Free Software Foundation, Inc.
b3ae7a0a 4
294981c7 5This file is part of GNU Emacs.
b3ae7a0a 6
294981c7
GM
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
b3ae7a0a 11
294981c7
GM
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
b3ae7a0a 19
b3ae7a0a 20
33b78bd6 21#include <config.h>
042c85b8 22#include <stdio.h>
f0e8db05 23#include <fcntl.h>
9ee8cf9e 24#include <unistd.h>
9ee8cf9e 25
042c85b8
JB
26/* Break string in two parts to avoid buggy C compilers that ignore characters
27 after nulls in strings. */
28
b23b5a5b 29static char string1[] = "Testing distribution of nonprinting chars:\n\
042c85b8
JB
30Should be 0177: \177 Should be 0377: \377 Should be 0212: \212.\n\
31Should be 0000: ";
32
b23b5a5b 33static char string2[] = ".\n\
042c85b8
JB
34This file is read by the `test-distribution' program.\n\
35If you change it, you will make that program fail.\n";
36
b23b5a5b 37static char buf[300];
80b2cbf2 38
042c85b8 39/* Like `read' but keeps trying until it gets SIZE bytes or reaches eof. */
b23b5a5b 40static int
728a982d 41cool_read (int fd, char *buf, size_t size)
042c85b8 42{
728a982d 43 ssize_t num;
f16cafe3 44 ssize_t sofar = 0;
042c85b8
JB
45
46 while (1)
47 {
48 if ((num = read (fd, buf + sofar, size - sofar)) == 0)
49 return sofar;
50 else if (num < 0)
51 return num;
52 sofar += num;
53 }
54}
55
340ff9de 56int
b8463cbf 57main (int argc, char **argv)
042c85b8 58{
d2d92f7a 59 int fd;
042c85b8 60
d2d92f7a
JB
61 if (argc != 2)
62 {
63 fprintf (stderr, "Usage: %s testfile\n", argv[0]);
80e26b66 64 exit (EXIT_FAILURE);
d2d92f7a 65 }
33b78bd6 66 fd = open (argv[1], O_RDONLY);
042c85b8
JB
67 if (fd < 0)
68 {
d2d92f7a 69 perror (argv[1]);
80e26b66 70 exit (EXIT_FAILURE);
042c85b8
JB
71 }
72 if (cool_read (fd, buf, sizeof string1) != sizeof string1 ||
73 strcmp (buf, string1) ||
74 cool_read (fd, buf, sizeof string2) != sizeof string2 - 1 ||
75 strncmp (buf, string2, sizeof string2 - 1))
76 {
d2d92f7a 77 fprintf (stderr, "Data in file `%s' has been damaged.\n\
042c85b8 78Most likely this means that many nonprinting characters\n\
d2d92f7a
JB
79have been corrupted in the files of Emacs, and it will not work.\n",
80 argv[1]);
80e26b66 81 exit (EXIT_FAILURE);
042c85b8
JB
82 }
83 close (fd);
65396510 84 return EXIT_SUCCESS;
042c85b8 85}
ab5796a9 86
65396510
TTN
87
88/* test-distrib.c ends here */