usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-xmemdup0.c
blobebb3c5d3712eacc7da074784327aafb61c9d178f
1 /* Test of xmemdup0() function.
2 Copyright (C) 2008-2024 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake <ebb9@byu.net>, 2008. */
19 #include <config.h>
21 #include "xmemdup0.h"
23 #include <stdlib.h>
24 #include <string.h>
26 #include "macros.h"
28 int
29 main (int argc, char **argv)
31 char buffer[10] = { 'a', 'b', 'c', 'd', '\0',
32 'f', 'g', 'h', 'i', 'j' };
34 /* Empty string. */
36 char *result = xmemdup0 (NULL, 0);
37 ASSERT (result);
38 ASSERT (!*result);
39 free (result);
42 char *result = xmemdup0 ("", 0);
43 ASSERT (result);
44 ASSERT (!*result);
45 free (result);
48 /* Various buffer lengths. */
50 char *result = xmemdup0 (buffer, 4);
51 ASSERT (result);
52 ASSERT (strcmp (result, buffer) == 0);
53 free (result);
56 char *result = xmemdup0 (buffer, 5);
57 ASSERT (result);
58 ASSERT (strcmp (result, buffer) == 0);
59 ASSERT (result[5] == '\0');
60 free (result);
63 char *result = xmemdup0 (buffer, 9);
64 ASSERT (result);
65 ASSERT (memcmp (result, buffer, 9) == 0);
66 ASSERT (result[9] == '\0');
67 free (result);
70 char *result = xmemdup0 (buffer, 10);
71 ASSERT (result);
72 ASSERT (memcmp (result, buffer, 10) == 0);
73 ASSERT (result[10] == '\0');
74 free (result);
77 return test_exit_status;