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