expl: Work around inaccurate implementation on NetBSD.
[gnulib.git] / tests / test-memcmp.c
blob5d481194ec03026b7182ac510cb3486f25a70a41
1 /*
2 * Copyright (C) 2008-2019 Free Software Foundation, Inc.
3 * Written by Simon Josefsson
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 <string.h>
22 #include "signature.h"
23 SIGNATURE_CHECK (memcmp, int, (void const *, void const *, size_t));
25 #include "zerosize-ptr.h"
26 #include "macros.h"
28 /* Note: This test sometimes fails when compiled by 'clang'.
29 See <https://bugs.llvm.org/show_bug.cgi?id=40063>. */
31 int
32 main (void)
34 /* Test equal / not equal distinction. */
35 ASSERT (memcmp (zerosize_ptr (), zerosize_ptr (), 0) == 0);
36 ASSERT (memcmp ("foo", "foobar", 2) == 0);
37 ASSERT (memcmp ("foo", "foobar", 3) == 0);
38 ASSERT (memcmp ("foo", "foobar", 4) != 0);
39 ASSERT (memcmp ("foo", "bar", 1) != 0);
40 ASSERT (memcmp ("foo", "bar", 3) != 0);
42 /* Test less / equal / greater distinction. */
43 ASSERT (memcmp ("foo", "moo", 4) < 0);
44 ASSERT (memcmp ("moo", "foo", 4) > 0);
45 ASSERT (memcmp ("oomph", "oops", 3) < 0);
46 ASSERT (memcmp ("oops", "oomph", 3) > 0);
47 ASSERT (memcmp ("foo", "foobar", 4) < 0);
48 ASSERT (memcmp ("foobar", "foo", 4) > 0);
50 /* Some old versions of memcmp were not 8-bit clean. */
51 ASSERT (memcmp ("\100", "\201", 1) < 0);
52 ASSERT (memcmp ("\201", "\100", 1) > 0);
53 ASSERT (memcmp ("\200", "\201", 1) < 0);
54 ASSERT (memcmp ("\201", "\200", 1) > 0);
56 /* The Next x86 OpenStep bug shows up only when comparing 16 bytes
57 or more and with at least one buffer not starting on a 4-byte boundary.
58 William Lewis provided this test program. */
60 char foo[21];
61 char bar[21];
62 int i;
63 for (i = 0; i < 4; i++)
65 char *a = foo + i;
66 char *b = bar + i;
67 strcpy (a, "--------01111111");
68 strcpy (b, "--------10000000");
69 ASSERT (memcmp (a, b, 16) < 0);
73 return 0;