openat: don’t close (-1)
[gnulib.git] / tests / test-memchr2.c
blob92128b06e733e38a506145fb38956354423e31da
1 /*
2 * Copyright (C) 2008-2024 Free Software Foundation, Inc.
3 * Written by Eric Blake
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 #include <config.h>
20 #include "memchr2.h"
22 #include <stdlib.h>
23 #include <string.h>
25 #include "zerosize-ptr.h"
26 #include "macros.h"
28 int
29 main (void)
31 size_t n = 0x100000;
32 char *input = malloc (n);
33 ASSERT (input);
35 input[0] = 'a';
36 input[1] = 'b';
37 memset (input + 2, 'c', 1024);
38 memset (input + 1026, 'd', n - 1028);
39 input[n - 2] = 'e';
40 input[n - 1] = 'a';
42 /* Basic behavior tests. */
43 ASSERT (memchr2 (input, 'a', 'b', n) == input);
44 ASSERT (memchr2 (input, 'b', 'a', n) == input);
46 ASSERT (memchr2 (input, 'a', 'b', 0) == NULL);
47 void *page_boundary = zerosize_ptr ();
48 if (page_boundary)
49 ASSERT (memchr2 (page_boundary, 'a', 'b', 0) == NULL);
51 ASSERT (memchr2 (input, 'b', 'd', n) == input + 1);
52 ASSERT (memchr2 (input + 2, 'b', 'd', n - 2) == input + 1026);
54 ASSERT (memchr2 (input, 'd', 'e', n) == input + 1026);
55 ASSERT (memchr2 (input, 'e', 'd', n) == input + 1026);
57 ASSERT (memchr2 (input + 1, 'a', 'e', n - 1) == input + n - 2);
58 ASSERT (memchr2 (input + 1, 'e', 'a', n - 1) == input + n - 2);
60 ASSERT (memchr2 (input, 'f', 'g', n) == NULL);
61 ASSERT (memchr2 (input, 'f', '\0', n) == NULL);
63 ASSERT (memchr2 (input, 'a', 'a', n) == input);
64 ASSERT (memchr2 (input + 1, 'a', 'a', n - 1) == input + n - 1);
65 ASSERT (memchr2 (input, 'f', 'f', n) == NULL);
67 /* Check that a very long haystack is handled quickly if one of the
68 two bytes is found near the beginning. */
70 size_t repeat = 10000;
71 for (; repeat > 0; repeat--)
73 ASSERT (memchr2 (input, 'c', 'e', n) == input + 2);
74 ASSERT (memchr2 (input, 'e', 'c', n) == input + 2);
75 ASSERT (memchr2 (input, 'c', '\0', n) == input + 2);
76 ASSERT (memchr2 (input, '\0', 'c', n) == input + 2);
80 /* Alignment tests. */
82 int i, j;
83 for (i = 0; i < 32; i++)
85 for (j = 0; j < 256; j++)
86 input[i + j] = j;
87 for (j = 0; j < 256; j++)
89 ASSERT (memchr2 (input + i, j, 0xff, 256) == input + i + j);
90 ASSERT (memchr2 (input + i, 0xff, j, 256) == input + i + j);
95 free (input);
97 return test_exit_status;