More memcmp tests.
[pspp] / tests / test-memcmp.c
1 /*
2  * Copyright (C) 2008 Free Software Foundation
3  * Written by Simon Josefsson
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 #define ASSERT(expr) \
26   do                                                                         \
27     {                                                                        \
28       if (!(expr))                                                           \
29         {                                                                    \
30           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
31           fflush (stderr);                                                   \
32           abort ();                                                          \
33         }                                                                    \
34     }                                                                        \
35   while (0)
36
37 int
38 main (void)
39 {
40   /* Test equal / not equal distinction.  */
41   ASSERT (memcmp (NULL, NULL, 0) == 0);
42   ASSERT (memcmp ("foo", "foobar", 2) == 0);
43   ASSERT (memcmp ("foo", "foobar", 3) == 0);
44   ASSERT (memcmp ("foo", "foobar", 4) != 0);
45   ASSERT (memcmp ("foo", "bar", 1) != 0);
46   ASSERT (memcmp ("foo", "bar", 3) != 0);
47
48   /* Test less / equal / greater distinction.  */
49   ASSERT (memcmp ("foo", "moo", 4) < 0);
50   ASSERT (memcmp ("moo", "foo", 4) > 0);
51   ASSERT (memcmp ("oomph", "oops", 3) < 0);
52   ASSERT (memcmp ("oops", "oomph", 3) > 0);
53   ASSERT (memcmp ("foo", "foobar", 4) < 0);
54   ASSERT (memcmp ("foobar", "foo", 4) > 0);
55
56   /* Some old versions of memcmp were not 8-bit clean.  */
57   ASSERT (memcmp ("\100", "\201", 1) < 0);
58   ASSERT (memcmp ("\201", "\100", 1) > 0);
59   ASSERT (memcmp ("\200", "\201", 1) < 0);
60   ASSERT (memcmp ("\201", "\200", 1) > 0);
61
62   /* The Next x86 OpenStep bug shows up only when comparing 16 bytes
63      or more and with at least one buffer not starting on a 4-byte boundary.
64      William Lewis provided this test program.   */
65   {
66     char foo[21];
67     char bar[21];
68     int i;
69     for (i = 0; i < 4; i++)
70       {
71         char *a = foo + i;
72         char *b = bar + i;
73         strcpy (a, "--------01111111");
74         strcpy (b, "--------10000000");
75         ASSERT (memcmp (a, b, 16) < 0);
76       }
77   }
78
79   return 0;
80 }