X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-safe-alloc.c;h=fc68ae7700009219b78a9ea090c928de7f0b209e;hb=dcfa509347541cf4a44f7e5be5fc74398d8a8199;hp=420b5e22135c5f9d0dd9a48fb632c6c84dc19c32;hpb=b87c1f601e56edb36cf88cff3edefe3454b29c89;p=gnulib.git diff --git a/tests/test-safe-alloc.c b/tests/test-safe-alloc.c index 420b5e221..fc68ae770 100644 --- a/tests/test-safe-alloc.c +++ b/tests/test-safe-alloc.c @@ -22,25 +22,28 @@ #include -#include +#include "safe-alloc.h" -#include +#include +#include #define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ + do \ + { \ + if (!(expr)) \ + { \ fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ + fflush (stderr); \ + abort (); \ + } \ + } \ 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; }