X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-open.c;h=ae9b3acaaaa62729ad26b6e0f5bc1db44d016249;hb=69c6204c668c6f6821d2b126f88092baf8bfc8d4;hp=aad36c4ada8131c2061bbfe59ce92107b262b9c7;hpb=8346ecd045f052983f69eb2c1d39e89e911aed87;p=gnulib.git diff --git a/tests/test-open.c b/tests/test-open.c index aad36c4ad..ae9b3acaa 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-2010 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,27 +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 -int -main () -{ - ASSERT (open ("nonexist.ent/", O_CREAT, 0600) < 0); +#include "macros.h" - ASSERT (open ("/dev/null", O_RDONLY) >= 0); +#define BASE "test-open.t" - return 0; +#include "test-open.h" + +int +main (void) +{ + return test_open (open, true); }