X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Funistdio%2Ftest-u8-vsprintf1.c;h=9559df0c9d3384a8eaaa6286ed2a8d14e96ee1b0;hb=dfd793fab03429ee3510958eee1ed33de282fbcc;hp=81c7fb570d6daf35850de76e673c39fe8f67976e;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/tests/unistdio/test-u8-vsprintf1.c b/tests/unistdio/test-u8-vsprintf1.c index 81c7fb570..9559df0c9 100644 --- a/tests/unistdio/test-u8-vsprintf1.c +++ b/tests/unistdio/test-u8-vsprintf1.c @@ -1,5 +1,5 @@ /* Test of u8_vsprintf() function. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2009 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 @@ -30,6 +30,7 @@ #include "unistr.h" #include "xalloc.h" +#include "progname.h" #define SIZEOF(array) (sizeof (array) / sizeof (array[0])) #define ASSERT(expr) \ @@ -38,6 +39,7 @@ if (!(expr)) \ { \ fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ + fflush (stderr); \ abort (); \ } \ } \ @@ -74,6 +76,9 @@ test_vsprintf () int main (int argc, char *argv[]) { + set_program_name (argv[0]); + test_vsprintf (); + return 0; }