blob: 1759291f38c224b7786770f635267d5ccdb6b3cb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 | /*	$OpenBSD: malloc_errno.c,v 1.5 2019/06/11 22:16:13 bluhm Exp $	*/
/*
 * Public domain.  2003, Otto Moerbeek
 */
#include <err.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
/* On arm64 with 2G of memory this test hangs while junking. */
char *malloc_options = "jj";
static void
testerrno(size_t sz)
{
	void *p;
	errno = -1;
	p = malloc(sz);
	if (p == NULL && errno != ENOMEM)
		errx(1, "fail: %lx %p %d", (unsigned long)sz, p, errno);
	/* if alloc succeeded, test if errno did not change */
	if (p != NULL && errno != -1)
		errx(1, "fail: %lx %p %d", (unsigned long)sz, p, errno);
	free(p);
}
/*
 * Provide some (silly) arguments to malloc(), and check if ERRNO is set
 * correctly.
 */
int
main(int argc, char *argv[])
{
	size_t i;
	testerrno(1);
	testerrno(100000);
	testerrno(-1);
	testerrno(-1000);
	testerrno(-10000);
	testerrno(-10000000);
	for (i = 0; i < 0x10; i++)
		testerrno(i * 0x10000000);
	return 0;
}
 |