maint: update copyright
[gnulib.git] / tests / test-open.c
index aad36c4..985d901 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of opening a file descriptor.
-   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+   Copyright (C) 2007-2014 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
 
 #include <fcntl.h>
 
+#include "signature.h"
+SIGNATURE_CHECK (open, int, (char const *, int, ...));
+
+#include <errno.h>
+#include <stdbool.h>
 #include <stdio.h>
-#include <stdlib.h>
-
-#define ASSERT(expr) \
-  do                                                                        \
-    {                                                                       \
-      if (!(expr))                                                          \
-        {                                                                   \
-          fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
-          fflush (stderr);                                                  \
-          abort ();                                                         \
-        }                                                                   \
-    }                                                                       \
-  while (0)
+#include <unistd.h>
 
-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);
 }