tests: add signature checks
[pspp] / tests / test-rawmemchr.c
1 /*
2  * Copyright (C) 2008, 2009 Free Software Foundation
3  * Written by Eric Blake and Bruno Haible
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 #include <config.h>
19
20 #include <string.h>
21
22 #include "signature.h"
23 SIGNATURE_CHECK (rawmemchr, void *, (void const *, int));
24
25 #include <stdio.h>
26 #include <stdlib.h>
27
28 #define ASSERT(expr) \
29   do                                                                         \
30     {                                                                        \
31       if (!(expr))                                                           \
32         {                                                                    \
33           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
34           fflush (stderr);                                                   \
35           abort ();                                                          \
36         }                                                                    \
37     }                                                                        \
38   while (0)
39
40 /* Calculating void * + int is not portable, so this wrapper converts
41    to char * to make the tests easier to write.  */
42 #define RAWMEMCHR (char *) rawmemchr
43
44 int
45 main (void)
46 {
47   size_t n = 0x100000;
48   char *input = malloc (n + 1);
49   ASSERT (input);
50
51   input[0] = 'a';
52   input[1] = 'b';
53   memset (input + 2, 'c', 1024);
54   memset (input + 1026, 'd', n - 1028);
55   input[n - 2] = 'e';
56   input[n - 1] = 'a';
57   input[n] = '\0';
58
59   /* Basic behavior tests.  */
60   ASSERT (RAWMEMCHR (input, 'a') == input);
61   ASSERT (RAWMEMCHR (input, 'b') == input + 1);
62   ASSERT (RAWMEMCHR (input, 'c') == input + 2);
63   ASSERT (RAWMEMCHR (input, 'd') == input + 1026);
64
65   ASSERT (RAWMEMCHR (input + 1, 'a') == input + n - 1);
66   ASSERT (RAWMEMCHR (input + 1, 'e') == input + n - 2);
67
68   ASSERT (RAWMEMCHR (input, '\0') == input + n);
69
70   /* Alignment tests.  */
71   {
72     int i, j;
73     for (i = 0; i < 32; i++)
74       {
75         for (j = 0; j < 256; j++)
76           input[i + j] = j;
77         for (j = 0; j < 256; j++)
78           {
79             ASSERT (RAWMEMCHR (input + i, j) == input + i + j);
80           }
81       }
82   }
83
84   free (input);
85
86   return 0;
87 }