expl: Work around inaccurate implementation on NetBSD.
[gnulib.git] / tests / test-dprintf-posix2.c
blob5ab9340884dccfd7c200c82089a95d89934f6aaf
1 /* Test of POSIX compatible dprintf() function.
2 Copyright (C) 2009-2019 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 of the License, or
7 (at your option) 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 Bruno Haible <bruno@clisp.org>, 2009. */
19 #include <config.h>
21 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <errno.h>
28 #if HAVE_GETRLIMIT && HAVE_SETRLIMIT
29 # include <sys/types.h>
30 # include <sys/time.h>
31 # include <sys/resource.h>
32 #endif
34 #include "resource-ext.h"
36 /* Test against a memory leak in the fprintf replacement. */
38 /* Number of iterations across the loop. */
39 #define NUM_ROUNDS 1000
41 /* Number of bytes that are allowed to escape per round. */
42 #define MAX_ALLOC_ROUND 10000
44 /* Number of bytes that are allowed to escape in total.
45 This should be at least 10 MB, since it includes the normal memory
46 or address space of the test program. */
47 #define MAX_ALLOC_TOTAL (NUM_ROUNDS * MAX_ALLOC_ROUND)
49 int
50 main (int argc, char *argv[])
52 uintptr_t initial_rusage_as;
53 int arg;
54 int result;
56 /* Limit the amount of malloc()ed memory to MAX_ALLOC_TOTAL or less. */
58 /* On AIX systems, malloc() is limited by RLIMIT_DATA. */
59 #if HAVE_GETRLIMIT && HAVE_SETRLIMIT && defined RLIMIT_DATA
61 struct rlimit limit;
63 if (getrlimit (RLIMIT_DATA, &limit) >= 0)
65 if (limit.rlim_max == RLIM_INFINITY || limit.rlim_max > MAX_ALLOC_TOTAL)
66 limit.rlim_max = MAX_ALLOC_TOTAL;
67 limit.rlim_cur = limit.rlim_max;
68 (void) setrlimit (RLIMIT_DATA, &limit);
71 #endif
72 /* On all systems except AIX and OpenBSD, malloc() is limited by RLIMIT_AS.
73 On some systems, setrlimit of RLIMIT_AS doesn't work but get_rusage_as ()
74 does. Allow the address space size to grow by at most MAX_ALLOC_TOTAL. */
75 initial_rusage_as = get_rusage_as ();
76 #if !defined _AIX
77 if (initial_rusage_as == 0)
78 return 77;
79 #endif
81 arg = atoi (argv[1]);
82 if (arg == 0)
84 void *memory = malloc (MAX_ALLOC_TOTAL);
85 if (memory == NULL)
86 return 1;
87 memset (memory, 17, MAX_ALLOC_TOTAL);
88 result = 78;
90 else
92 /* Perform the test and test whether it triggers a permanent memory
93 allocation of more than MAX_ALLOC_TOTAL bytes. */
94 int repeat;
96 for (repeat = 0; repeat < NUM_ROUNDS; repeat++)
98 /* This may produce a temporary memory allocation of 11000 bytes.
99 but should not result in a permanent memory allocation. */
100 if (dprintf (STDOUT_FILENO, "%011000d\n", 17) == -1
101 && errno == ENOMEM)
102 return 1;
105 result = 0;
108 if (get_rusage_as () > initial_rusage_as + MAX_ALLOC_TOTAL)
109 return 1;
111 return result;