X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-obstack-printf.c;h=1081921600778e593c168738a2f6024bd7c0b1fa;hb=56fcb71cb3d5219bcb17eeb77b6ea9b624e52508;hp=9c2761a319e49abef9c3ccbbc0dafecab0685c60;hpb=b63678879f8846581597d2065641bebd04feda92;p=gnulib.git diff --git a/tests/test-obstack-printf.c b/tests/test-obstack-printf.c index 9c2761a31..108192160 100644 --- a/tests/test-obstack-printf.c +++ b/tests/test-obstack-printf.c @@ -1,5 +1,5 @@ /* Test of obstack_printf() and obstack_vprintf() functions. - Copyright (C) 2008 Free Software Foundation, Inc. + Copyright (C) 2008-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,6 +20,11 @@ #include +#include "signature.h" +SIGNATURE_CHECK (obstack_printf, int, (struct obstack *, char const *, ...)); +SIGNATURE_CHECK (obstack_vprintf, int, (struct obstack *, char const *, + va_list)); + #include "obstack.h" #include "xalloc.h" @@ -27,17 +32,8 @@ #include #include -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) +#include "progname.h" +#include "macros.h" #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free @@ -134,6 +130,8 @@ test_obstack_printf () int main (int argc, char *argv[]) { + set_program_name (argv[0]); + test_obstack_vprintf (); test_obstack_printf (); return 0;