Blame gnulib/tests/test-getopt-gnu.c

Packit Service a2ae7a
/* Test of command line argument processing.
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 Bruno Haible <bruno@clisp.org>, 2009.  */
Packit Service a2ae7a
Packit Service a2ae7a
#include <config.h>
Packit Service a2ae7a
Packit Service a2ae7a
/* None of the files accessed by this test are large, so disable the
Packit Service a2ae7a
   ftell link warning if we are not using the gnulib ftell module.  */
Packit Service a2ae7a
#define _GL_NO_LARGE_FILES
Packit Service a2ae7a
Packit Service a2ae7a
/* POSIX and glibc provide the getopt() function in <unistd.h>, see
Packit Service a2ae7a
   http://pubs.opengroup.org/onlinepubs/9699919799/functions/getopt.html
Packit Service a2ae7a
   https://www.gnu.org/software/libc/manual/html_node/Using-Getopt.html
Packit Service a2ae7a
   But gnulib provides the getopt() function in <getopt.h>, not in <unistd.h>.
Packit Service a2ae7a
   This is what we are testing here.  */
Packit Service a2ae7a
#include <getopt.h>
Packit Service a2ae7a
Packit Service a2ae7a
#ifndef __getopt_argv_const
Packit Service a2ae7a
# define __getopt_argv_const const
Packit Service a2ae7a
#endif
Packit Service a2ae7a
#include "signature.h"
Packit Service a2ae7a
SIGNATURE_CHECK (getopt_long, int, (int, char *__getopt_argv_const *,
Packit Service a2ae7a
                                    char const *, struct option const *,
Packit Service a2ae7a
                                    int *));
Packit Service a2ae7a
SIGNATURE_CHECK (getopt_long_only, int, (int, char *__getopt_argv_const *,
Packit Service a2ae7a
                                         char const *, struct option const *,
Packit Service a2ae7a
                                         int *));
Packit Service a2ae7a
Packit Service a2ae7a
#define TEST_GETOPT_GNU 1
Packit Service a2ae7a
#define TEST_GETOPT_TMP_NAME "test-getopt-gnu.tmp"
Packit Service a2ae7a
#include "test-getopt-main.h"