X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-open.c;h=3c5b2abdbb027e6357b4238cfb909ddabd82a41d;hb=ae006b4;hp=c570aaad41fb92d8d2a40ecf908b4d2c957ac220;hpb=e220635fc952c63b533873f2af39ec76aed4b4e3;p=gnulib.git diff --git a/tests/test-open.c b/tests/test-open.c index c570aaad4..3c5b2abdb 100644 --- a/tests/test-open.c +++ b/tests/test-open.c @@ -1,5 +1,5 @@ /* Test of opening a file descriptor. - Copyright (C) 2007-2008 Free Software Foundation, Inc. + Copyright (C) 2007-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,25 +20,22 @@ #include +#include "signature.h" +SIGNATURE_CHECK (open, int, (char const *, int, ...)); + +#include +#include #include -#include - -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) +#include + +#include "macros.h" + +#define BASE "test-open.t" + +#include "test-open.h" int -main () +main (void) { - ASSERT (open ("/dev/null", O_RDONLY) >= 0); - - return 0; + return test_open (open, true); }