summaryrefslogtreecommitdiff
path: root/test/malloc/malloc.c
blob: 1cea31986660b2e8a988873626a621a7c03fa7a3 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71

#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

#define N_PTRS 1000
#define N_ALLOCS 10000
#define MAX_SIZE 0x10000

#define random_size()	(random()%MAX_SIZE)
#define random_ptr()	(random()%N_PTRS)

void test1(void);
void test2(void);

int main(int argc,char *argv[])
{
	test1();
	test2();
	return 0;
}

void test1(void)
{
	void **ptrs;
	int i,j;
	int size;

	srandom(0x19730929);

	ptrs = malloc(N_PTRS*sizeof(void *));

	for(i=0;i<N_PTRS;i++){
		ptrs[i]=malloc(random_size());
	}
	for(i=0;i<N_ALLOCS;i++){
		j=random_ptr();
		free(ptrs[j]);

		size=random_size();
		ptrs[j]=malloc(size);
		if(!ptrs[j]){
			printf("malloc failed! %d\n",i);
		}
		memset(ptrs[j],0,size);
	}
	for(i=0;i<N_PTRS;i++){
		free(ptrs[i]);
	}
}

void test2(void)
{
	void *ptr = NULL;

	ptr = realloc(ptr,100);
	if(!ptr){
		printf("couldn't realloc() a NULL pointer\n");
	}else{
		free(ptr);
	}
	
	ptr = malloc(100);
	ptr = realloc(ptr, 0);
	if(ptr){
		printf("realloc(,0) failed\n");
		free(ptr);
	}
}