Use spaces for indentation, not tabs.
[gnulib.git] / tests / test-memchr2.c
1 /*
2  * Copyright (C) 2008-2009 Free Software Foundation
3  * Written by Eric Blake
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 "memchr2.h"
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include "zerosize-ptr.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 MEMCHR2 (char *) memchr2
43
44 int
45 main (void)
46 {
47   size_t n = 0x100000;
48   char *input = malloc (n);
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
58   /* Basic behavior tests.  */
59   ASSERT (MEMCHR2 (input, 'a', 'b', n) == input);
60   ASSERT (MEMCHR2 (input, 'b', 'a', n) == input);
61
62   ASSERT (MEMCHR2 (input, 'a', 'b', 0) == NULL);
63   ASSERT (MEMCHR2 (zerosize_ptr (), 'a', 'b', 0) == NULL);
64
65   ASSERT (MEMCHR2 (input, 'b', 'd', n) == input + 1);
66   ASSERT (MEMCHR2 (input + 2, 'b', 'd', n - 2) == input + 1026);
67
68   ASSERT (MEMCHR2 (input, 'd', 'e', n) == input + 1026);
69   ASSERT (MEMCHR2 (input, 'e', 'd', n) == input + 1026);
70
71   ASSERT (MEMCHR2 (input + 1, 'a', 'e', n - 1) == input + n - 2);
72   ASSERT (MEMCHR2 (input + 1, 'e', 'a', n - 1) == input + n - 2);
73
74   ASSERT (MEMCHR2 (input, 'f', 'g', n) == NULL);
75   ASSERT (MEMCHR2 (input, 'f', '\0', n) == NULL);
76
77   ASSERT (MEMCHR2 (input, 'a', 'a', n) == input);
78   ASSERT (MEMCHR2 (input + 1, 'a', 'a', n - 1) == input + n - 1);
79   ASSERT (MEMCHR2 (input, 'f', 'f', n) == NULL);
80
81   /* Check that a very long haystack is handled quickly if one of the
82      two bytes is found near the beginning.  */
83   {
84     size_t repeat = 10000;
85     for (; repeat > 0; repeat--)
86       {
87         ASSERT (MEMCHR2 (input, 'c', 'e', n) == input + 2);
88         ASSERT (MEMCHR2 (input, 'e', 'c', n) == input + 2);
89         ASSERT (MEMCHR2 (input, 'c', '\0', n) == input + 2);
90         ASSERT (MEMCHR2 (input, '\0', 'c', n) == input + 2);
91       }
92   }
93
94   /* Alignment tests.  */
95   {
96     int i, j;
97     for (i = 0; i < 32; i++)
98       {
99         for (j = 0; j < 256; j++)
100           input[i + j] = j;
101         for (j = 0; j < 256; j++)
102           {
103             ASSERT (MEMCHR2 (input + i, j, 0xff, 256) == input + i + j);
104             ASSERT (MEMCHR2 (input + i, 0xff, j, 256) == input + i + j);
105           }
106       }
107   }
108
109   free (input);
110
111   return 0;
112 }