X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-open.c;h=f04144f56266c0433f4182f99da162d663847d54;hb=d93e239a6a447bb45b77121739015760aad15584;hp=53610cecb9e32d63f68f13eb1c57f27c024cad1a;hpb=77676a2d625501ec06a3c1dfb6f6db0c858b8b8c;p=gnulib.git diff --git a/tests/test-open.c b/tests/test-open.c index 53610cecb..f04144f56 100644 --- a/tests/test-open.c +++ b/tests/test-open.c @@ -1,10 +1,10 @@ /* Test of opening a file descriptor. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ /* Written by Bruno Haible , 2007. */ @@ -21,24 +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__); \ - 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); }