Added gnutls_x509_crt_set_policy()
[gnutls.git] / gl / tests / test-getopt.c
blobe08a834cb8423ce658b9d54823d60790929b2072
1 /* Test of command line argument processing.
2 Copyright (C) 2009-2012 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2009. */
19 #include <config.h>
21 /* None of the files accessed by this test are large, so disable the
22 ftell link warning if we are not using the gnulib ftell module. */
23 #define _GL_NO_LARGE_FILES
25 #if GNULIB_TEST_GETOPT_GNU
26 # include <getopt.h>
28 # ifndef __getopt_argv_const
29 # define __getopt_argv_const const
30 # endif
31 # include "signature.h"
32 SIGNATURE_CHECK (getopt_long, int, (int, char *__getopt_argv_const *,
33 char const *, struct option const *,
34 int *));
35 SIGNATURE_CHECK (getopt_long_only, int, (int, char *__getopt_argv_const *,
36 char const *, struct option const *,
37 int *));
39 #endif
41 #include <unistd.h>
43 #include "signature.h"
44 SIGNATURE_CHECK (getopt, int, (int, char * const[], char const *));
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <string.h>
50 /* This test intentionally remaps stderr. So, we arrange to have fd 10
51 (outside the range of interesting fd's during the test) set up to
52 duplicate the original stderr. */
54 #define BACKUP_STDERR_FILENO 10
55 #define ASSERT_STREAM myerr
56 #include "macros.h"
58 static FILE *myerr;
60 #include "test-getopt.h"
61 #if GNULIB_TEST_GETOPT_GNU
62 # include "test-getopt_long.h"
63 #endif
65 int
66 main (void)
68 /* This test validates that stderr is used correctly, so move the
69 original into fd 10. */
70 if (dup2 (STDERR_FILENO, BACKUP_STDERR_FILENO) != BACKUP_STDERR_FILENO
71 || (myerr = fdopen (BACKUP_STDERR_FILENO, "w")) == NULL)
72 return 2;
74 ASSERT (freopen ("test-getopt.tmp", "w", stderr) == stderr);
76 /* These default values are required by POSIX. */
77 ASSERT (optind == 1);
78 ASSERT (opterr != 0);
80 setenv ("POSIXLY_CORRECT", "1", 1);
81 test_getopt ();
83 #if GNULIB_TEST_GETOPT_GNU
84 test_getopt_long_posix ();
85 #endif
87 unsetenv ("POSIXLY_CORRECT");
88 test_getopt ();
90 #if GNULIB_TEST_GETOPT_GNU
91 test_getopt_long ();
92 test_getopt_long_only ();
93 #endif
95 ASSERT (fclose (stderr) == 0);
96 ASSERT (remove ("test-getopt.tmp") == 0);
98 return 0;