usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-posix_memalign.c
blob98a2f941df8407b1dfda122352a317f2ada48eaf
1 /* Test of allocating memory with given alignment.
3 Copyright (C) 2020-2024 Free Software Foundation, Inc.
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 <https://www.gnu.org/licenses/>. */
18 /* Written by Bruno Haible <bruno@clisp.org>, 2020. */
20 #include <config.h>
22 /* Specification. */
23 #include <stdlib.h>
25 #include <stdint.h>
26 #include <stdio.h>
27 #include <string.h>
29 #include "macros.h"
31 int
32 main (int argc, char *argv[])
34 #if HAVE_POSIX_MEMALIGN
35 static size_t sizes[] =
36 { 13, 8, 17, 450, 320, 1, 99, 4, 15, 16, 2, 76, 37, 127, 2406, 641, 5781 };
37 void *aligned2_blocks[SIZEOF (sizes)];
38 void *aligned4_blocks[SIZEOF (sizes)];
39 void *aligned8_blocks[SIZEOF (sizes)];
40 void *aligned16_blocks[SIZEOF (sizes)];
41 void *aligned32_blocks[SIZEOF (sizes)];
42 void *aligned64_blocks[SIZEOF (sizes)];
43 size_t i;
45 for (i = 0; i < SIZEOF (sizes); i++)
47 size_t size = sizes[i];
49 if (sizeof (void *) <= 2)
51 ASSERT (posix_memalign (&aligned2_blocks[i], 2, size) == 0);
52 ASSERT (aligned2_blocks[i] != NULL);
53 ASSERT (((uintptr_t) aligned2_blocks[i] % 2) == 0);
54 memset (aligned2_blocks[i], 'u', size);
57 if (sizeof (void *) <= 4)
59 ASSERT (posix_memalign (&aligned4_blocks[i], 4, size) == 0);
60 ASSERT (aligned4_blocks[i] != NULL);
61 ASSERT (((uintptr_t) aligned4_blocks[i] % 4) == 0);
62 memset (aligned4_blocks[i], 'v', size);
65 if (sizeof (void *) <= 8)
67 ASSERT (posix_memalign (&aligned8_blocks[i], 8, size) == 0);
68 ASSERT (aligned8_blocks[i] != NULL);
69 ASSERT (((uintptr_t) aligned8_blocks[i] % 8) == 0);
70 memset (aligned8_blocks[i], 'w', size);
73 ASSERT (posix_memalign (&aligned16_blocks[i], 16, size) == 0);
74 ASSERT (aligned16_blocks[i] != NULL);
75 ASSERT (((uintptr_t) aligned16_blocks[i] % 16) == 0);
76 memset (aligned16_blocks[i], 'x', size);
78 ASSERT (posix_memalign (&aligned32_blocks[i], 32, size) == 0);
79 ASSERT (aligned32_blocks[i] != NULL);
80 ASSERT (((uintptr_t) aligned32_blocks[i] % 32) == 0);
81 memset (aligned32_blocks[i], 'y', size);
83 ASSERT (posix_memalign (&aligned64_blocks[i], 64, size) == 0);
84 ASSERT (aligned64_blocks[i] != NULL);
85 ASSERT (((uintptr_t) aligned64_blocks[i] % 64) == 0);
86 memset (aligned64_blocks[i], 'z', size);
89 for (i = 0; i < SIZEOF (sizes); i++)
91 if (sizeof (void *) <= 2)
92 free (aligned2_blocks[i]);
93 if (sizeof (void *) <= 4)
94 free (aligned4_blocks[i]);
95 if (sizeof (void *) <= 8)
96 free (aligned8_blocks[i]);
97 free (aligned16_blocks[i]);
98 free (aligned32_blocks[i]);
99 free (aligned64_blocks[i]);
102 return test_exit_status;
103 #else
104 fputs ("Skipping test: function 'aligned_alloc' does not exist\n", stderr);
105 return 77;
106 #endif