Blame gnulib/tests/test-stat.c

Packit Service a2ae7a
/* Tests of stat.
Packit Service a2ae7a
   Copyright (C) 2009-2019 Free Software Foundation, Inc.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is free software: you can redistribute it and/or modify
Packit Service a2ae7a
   it under the terms of the GNU General Public License as published by
Packit Service a2ae7a
   the Free Software Foundation; either version 3 of the License, or
Packit Service a2ae7a
   (at your option) any later version.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is distributed in the hope that it will be useful,
Packit Service a2ae7a
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2ae7a
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2ae7a
   GNU General Public License for more details.
Packit Service a2ae7a
Packit Service a2ae7a
   You should have received a copy of the GNU General Public License
Packit Service a2ae7a
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2ae7a
Packit Service a2ae7a
/* Written by Eric Blake <ebb9@byu.net>, 2009.  */
Packit Service a2ae7a
Packit Service a2ae7a
#include <config.h>
Packit Service a2ae7a
Packit Service a2ae7a
#include <sys/stat.h>
Packit Service a2ae7a
Packit Service a2ae7a
/* Caution: stat may be a function-like macro.  Although this
Packit Service a2ae7a
   signature check must pass, it may be the signature of the real (and
Packit Service a2ae7a
   broken) stat rather than rpl_stat.  Most code should not use the
Packit Service a2ae7a
   address of stat.  */
Packit Service a2ae7a
#include "signature.h"
Packit Service a2ae7a
SIGNATURE_CHECK (stat, int, (char const *, struct stat *));
Packit Service a2ae7a
Packit Service a2ae7a
#include <fcntl.h>
Packit Service a2ae7a
#include <errno.h>
Packit Service a2ae7a
#include <stdbool.h>
Packit Service a2ae7a
#include <stdlib.h>
Packit Service a2ae7a
#include <stdio.h>
Packit Service a2ae7a
#include <unistd.h>
Packit Service a2ae7a
Packit Service a2ae7a
#include "same-inode.h"
Packit Service a2ae7a
#include "macros.h"
Packit Service a2ae7a
Packit Service a2ae7a
#define BASE "test-stat.t"
Packit Service a2ae7a
Packit Service a2ae7a
#include "test-stat.h"
Packit Service a2ae7a
Packit Service a2ae7a
/* Wrapper around stat, which works even if stat is a function-like
Packit Service a2ae7a
   macro, where test_stat_func(stat) would do the wrong thing.  */
Packit Service a2ae7a
static int
Packit Service a2ae7a
do_stat (char const *name, struct stat *st)
Packit Service a2ae7a
{
Packit Service a2ae7a
  return stat (name, st);
Packit Service a2ae7a
}
Packit Service a2ae7a
Packit Service a2ae7a
int
Packit Service a2ae7a
main (void)
Packit Service a2ae7a
{
Packit Service a2ae7a
  return test_stat_func (do_stat, true);
Packit Service a2ae7a
}