Add memcmp-tests module.
[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   char foo[] = "foo";
41   char foobar[] = "foobar";
42   char bar[] = "bar";
43
44   ASSERT (memcmp (NULL, NULL, 0) == 0);
45   ASSERT (memcmp (foo, foobar, 2) == 0);
46   ASSERT (memcmp (foo, foobar, 3) == 0);
47   ASSERT (memcmp (foo, foobar, 4) != 0);
48   ASSERT (memcmp (foo, bar, 1) != 0);
49   ASSERT (memcmp (foo, bar, 3) != 0);
50
51   return 0;
52 }