X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-safe-alloc.c;h=97d200ab71e6453881d349efd121839b90b18e8d;hb=7da6c6f9a62e4a00ad88beb04f492b28fe517699;hp=420b5e22135c5f9d0dd9a48fb632c6c84dc19c32;hpb=b87c1f601e56edb36cf88cff3edefe3454b29c89;p=gnulib.git diff --git a/tests/test-safe-alloc.c b/tests/test-safe-alloc.c index 420b5e221..97d200ab7 100644 --- a/tests/test-safe-alloc.c +++ b/tests/test-safe-alloc.c @@ -22,9 +22,10 @@ #include -#include +#include "safe-alloc.h" -#include +#include +#include #define ASSERT(expr) \ do \ @@ -38,9 +39,11 @@ } \ while (0) -int main() +int +main () { - struct tst { + struct tst + { int a; int b; }; @@ -48,16 +51,18 @@ int main() struct tst *p = NULL; int r; - r = ALLOC(p); - ASSERT(r >= 0); + r = ALLOC (p); + ASSERT (r >= 0); - ASSERT(p->a == 0 && p->b == 0); + ASSERT (p->a == 0 && p->b == 0); p->a = p->b = 42; - r = REALLOC_N(p, 5); + r = REALLOC_N (p, 5); + + ASSERT (p[0].a == 42 && p[0].b == 42); - ASSERT(p[0].a == 42 && p[0].b == 42); + FREE (p); + ASSERT (p == NULL); - FREE(p); - ASSERT(p == NULL); + return 0; }