X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-safe-alloc.c;h=2cf61bec691482c93ecad1d9c189336a799710cc;hb=6815bc73969d38c2226cf6e3366c1e4f4f756ba0;hp=420b5e22135c5f9d0dd9a48fb632c6c84dc19c32;hpb=b87c1f601e56edb36cf88cff3edefe3454b29c89;p=gnulib.git diff --git a/tests/test-safe-alloc.c b/tests/test-safe-alloc.c index 420b5e221..2cf61bec6 100644 --- a/tests/test-safe-alloc.c +++ b/tests/test-safe-alloc.c @@ -1,12 +1,12 @@ /* * Test the safe-alloc macros * - * Copyright (C) 2009 Free Software Foundation, Inc. + * Copyright (C) 2009-2011 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * version 3.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -22,25 +22,15 @@ #include -#include +#include "safe-alloc.h" -#include +#include "macros.h" -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) - -int main() +int +main () { - struct tst { + struct tst + { int a; int b; }; @@ -48,16 +38,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; }