|
@@ -11,61 +11,71 @@
|
|
#define random_size() (random()%MAX_SIZE)
|
|
#define random_size() (random()%MAX_SIZE)
|
|
#define random_ptr() (random()%N_PTRS)
|
|
#define random_ptr() (random()%N_PTRS)
|
|
|
|
|
|
-void test1(void);
|
|
+int test1(void);
|
|
-void test2(void);
|
|
+int test2(void);
|
|
|
|
|
|
-int main(int argc,char *argv[])
|
|
+int main(int argc, char *argv[])
|
|
{
|
|
{
|
|
- test1();
|
|
+ return test1() + test2();
|
|
- test2();
|
|
|
|
- return 0;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-void test1(void)
|
|
+int test1(void)
|
|
{
|
|
{
|
|
void **ptrs;
|
|
void **ptrs;
|
|
int i,j;
|
|
int i,j;
|
|
int size;
|
|
int size;
|
|
|
|
+ int ret = 0;
|
|
|
|
|
|
srandom(0x19730929);
|
|
srandom(0x19730929);
|
|
|
|
|
|
ptrs = malloc(N_PTRS*sizeof(void *));
|
|
ptrs = malloc(N_PTRS*sizeof(void *));
|
|
|
|
|
|
- for(i=0;i<N_PTRS;i++){
|
|
+ for(i=0; i<N_PTRS; i++){
|
|
- ptrs[i]=malloc(random_size());
|
|
+ if ((ptrs[i] = malloc(random_size())) == NULL) {
|
|
|
|
+ printf("malloc random failed! %i\n", i);
|
|
|
|
+ ++ret;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- for(i=0;i<N_ALLOCS;i++){
|
|
+ for(i=0; i<N_ALLOCS; i++){
|
|
- j=random_ptr();
|
|
+ j = random_ptr();
|
|
free(ptrs[j]);
|
|
free(ptrs[j]);
|
|
|
|
|
|
- size=random_size();
|
|
+ size = random_size();
|
|
- ptrs[j]=malloc(size);
|
|
+ ptrs[j] = malloc(size);
|
|
- if(!ptrs[j]){
|
|
+ if (!ptrs[j]) {
|
|
- printf("malloc failed! %d\n",i);
|
|
+ printf("malloc failed! %d\n", i);
|
|
|
|
+ ++ret;
|
|
}
|
|
}
|
|
memset(ptrs[j],0,size);
|
|
memset(ptrs[j],0,size);
|
|
}
|
|
}
|
|
- for(i=0;i<N_PTRS;i++){
|
|
+ for(i=0; i<N_PTRS; i++){
|
|
free(ptrs[i]);
|
|
free(ptrs[i]);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ return ret;
|
|
}
|
|
}
|
|
|
|
|
|
-void test2(void)
|
|
+int test2(void)
|
|
{
|
|
{
|
|
void *ptr = NULL;
|
|
void *ptr = NULL;
|
|
|
|
+ int ret = 0;
|
|
|
|
|
|
ptr = realloc(ptr,100);
|
|
ptr = realloc(ptr,100);
|
|
- if(!ptr){
|
|
+ if (!ptr) {
|
|
printf("couldn't realloc() a NULL pointer\n");
|
|
printf("couldn't realloc() a NULL pointer\n");
|
|
- }else{
|
|
+ ++ret;
|
|
|
|
+ } else {
|
|
free(ptr);
|
|
free(ptr);
|
|
}
|
|
}
|
|
|
|
|
|
ptr = malloc(100);
|
|
ptr = malloc(100);
|
|
ptr = realloc(ptr, 0);
|
|
ptr = realloc(ptr, 0);
|
|
- if(ptr){
|
|
+ if (ptr) {
|
|
printf("realloc(,0) failed\n");
|
|
printf("realloc(,0) failed\n");
|
|
|
|
+ ++ret;
|
|
free(ptr);
|
|
free(ptr);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ return ret;
|
|
}
|
|
}
|
|
|
|
|