ack/tests/plat/core/calloc_c.c
David Given 19cd42124f Rearrange the tests into sets; allow plats to skip sets; pc86 and linux68k now
skip the tests which use floating point instructions (as their emulators don't
support them).
2018-06-08 15:59:04 +09:00

24 lines
449 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "test.h"
int main(int argc, const char* argv[])
{
const char* p;
int i;
ASSERT(0 == calloc(0, 0));
ASSERT(0 == calloc(0, 1));
ASSERT(0 == calloc(1, 0));
ASSERT(0 == calloc(SIZE_MAX/2, 3));
ASSERT(0 == calloc(SIZE_MAX/2, 2));
ASSERT(0 != calloc(1, 1));
p = calloc(10, 1);
for (i=0; i<10; i++)
ASSERT(0 == p[i]);
finished();
}