glob: Declare variables at the very start of their scope.
[gnulib/ericb.git] / tests / test-memcmp.c
blob4f94fc704c720443e556278b2c9ec7af6ffcd7f5
1 /*
2 * Copyright (C) 2008-2017 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 <http://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 int
29 main (void)
31 /* Test equal / not equal distinction. */
32 ASSERT (memcmp (zerosize_ptr (), zerosize_ptr (), 0) == 0);
33 ASSERT (memcmp ("foo", "foobar", 2) == 0);
34 ASSERT (memcmp ("foo", "foobar", 3) == 0);
35 ASSERT (memcmp ("foo", "foobar", 4) != 0);
36 ASSERT (memcmp ("foo", "bar", 1) != 0);
37 ASSERT (memcmp ("foo", "bar", 3) != 0);
39 /* Test less / equal / greater distinction. */
40 ASSERT (memcmp ("foo", "moo", 4) < 0);
41 ASSERT (memcmp ("moo", "foo", 4) > 0);
42 ASSERT (memcmp ("oomph", "oops", 3) < 0);
43 ASSERT (memcmp ("oops", "oomph", 3) > 0);
44 ASSERT (memcmp ("foo", "foobar", 4) < 0);
45 ASSERT (memcmp ("foobar", "foo", 4) > 0);
47 /* Some old versions of memcmp were not 8-bit clean. */
48 ASSERT (memcmp ("\100", "\201", 1) < 0);
49 ASSERT (memcmp ("\201", "\100", 1) > 0);
50 ASSERT (memcmp ("\200", "\201", 1) < 0);
51 ASSERT (memcmp ("\201", "\200", 1) > 0);
53 /* The Next x86 OpenStep bug shows up only when comparing 16 bytes
54 or more and with at least one buffer not starting on a 4-byte boundary.
55 William Lewis provided this test program. */
57 char foo[21];
58 char bar[21];
59 int i;
60 for (i = 0; i < 4; i++)
62 char *a = foo + i;
63 char *b = bar + i;
64 strcpy (a, "--------01111111");
65 strcpy (b, "--------10000000");
66 ASSERT (memcmp (a, b, 16) < 0);
70 return 0;