Use spaces for indentation, not tabs.
[gnulib.git] / tests / test-memrchr.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 <stdio.h>
23 #include <stdlib.h>
24
25 #include "zerosize-ptr.h"
26
27 #define ASSERT(expr) \
28   do                                                                         \
29     {                                                                        \
30       if (!(expr))                                                           \
31         {                                                                    \
32           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
33           fflush (stderr);                                                   \
34           abort ();                                                          \
35         }                                                                    \
36     }                                                                        \
37   while (0)
38
39 /* Calculating void * + int is not portable, so this wrapper converts
40    to char * to make the tests easier to write.  */
41 #define MEMRCHR (char *) memrchr
42
43 int
44 main (void)
45 {
46   size_t n = 0x100000;
47   char *input = malloc (n);
48   ASSERT (input);
49
50   input[n - 1] = 'a';
51   input[n - 2] = 'b';
52   memset (input + n - 1026, 'c', 1024);
53   memset (input + 2, 'd', n - 1028);
54   input[1] = 'e';
55   input[0] = 'a';
56
57   /* Basic behavior tests.  */
58   ASSERT (MEMRCHR (input, 'a', n) == input + n - 1);
59
60   ASSERT (MEMRCHR (input, 'a', 0) == NULL);
61   ASSERT (MEMRCHR (zerosize_ptr (), 'a', 0) == NULL);
62
63   ASSERT (MEMRCHR (input, 'b', n) == input + n - 2);
64   ASSERT (MEMRCHR (input, 'c', n) == input + n - 3);
65   ASSERT (MEMRCHR (input, 'd', n) == input + n - 1027);
66
67   ASSERT (MEMRCHR (input, 'a', n - 1) == input);
68   ASSERT (MEMRCHR (input, 'e', n - 1) == input + 1);
69
70   ASSERT (MEMRCHR (input, 'f', n) == NULL);
71   ASSERT (MEMRCHR (input, '\0', n) == NULL);
72
73   /* Check that a very long haystack is handled quickly if the byte is
74      found near the end.  */
75   {
76     size_t repeat = 10000;
77     for (; repeat > 0; repeat--)
78       {
79         ASSERT (MEMRCHR (input, 'c', n) == input + n - 3);
80       }
81   }
82
83   /* Alignment tests.  */
84   {
85     int i, j;
86     for (i = 0; i < 32; i++)
87       {
88         for (j = 0; j < 256; j++)
89           input[i + j] = j;
90         for (j = 0; j < 256; j++)
91           {
92             ASSERT (MEMRCHR (input + i, j, 256) == input + i + j);
93           }
94       }
95   }
96
97   free (input);
98
99   return 0;
100 }