mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
dfbea09f96
There were two copies of the bulk of the code to handle long options. Now there is only one. (Yes, this is in aid of merging from gnulib.) The change to bug-getopt4.c clarifies the error messages when the test fails. * posix/getopt.c (process_long_option): New function split out from _getopt_internal_r. (_getopt_internal_r): Replace both copies of the long-option processing code with calls to process_long_option. * posix/bug-getopt4.c (one_test): Print argv[0] in error messages. (do_test): Differentiate argv[0] in the two subtests.
87 lines
1.7 KiB
C
87 lines
1.7 KiB
C
/* BZ 11041 */
|
|
#include <getopt.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
static const struct option opts[] =
|
|
{
|
|
{ "alpha", optional_argument, NULL, 'a' },
|
|
{ NULL, 0, NULL, 0 }
|
|
};
|
|
|
|
static int
|
|
one_test (const char *fmt, int argc, char *argv[], int n, int expected[n])
|
|
{
|
|
optind = 1;
|
|
|
|
int res = 0;
|
|
for (int i = 0; i < n; ++i)
|
|
{
|
|
rewind (stderr);
|
|
if (ftruncate (fileno (stderr), 0) != 0)
|
|
{
|
|
puts ("cannot truncate file");
|
|
return 1;
|
|
}
|
|
|
|
int c = getopt_long (argc, argv, fmt, opts, NULL);
|
|
if (c != expected[i])
|
|
{
|
|
printf ("%s: format '%s' test %d failed: expected '%c', got '%c'\n",
|
|
argv[0], fmt, i, expected[i], c);
|
|
res = 1;
|
|
}
|
|
else if (optarg != NULL)
|
|
{
|
|
printf ("%s: format '%s' test %d failed: optarg is \"%s\", not NULL\n",
|
|
argv[0], fmt, i, optarg);
|
|
res = 1;
|
|
}
|
|
if (ftell (stderr) != 0)
|
|
{
|
|
printf ("%s: format '%s' test %d failed: printed to stderr\n",
|
|
argv[0], fmt, i);
|
|
res = 1;
|
|
}
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
char *fname = tmpnam (NULL);
|
|
if (fname == NULL)
|
|
{
|
|
puts ("cannot generate name for temporary file");
|
|
return 1;
|
|
}
|
|
|
|
if (freopen (fname, "w+", stderr) == NULL)
|
|
{
|
|
puts ("cannot redirect stderr");
|
|
return 1;
|
|
}
|
|
|
|
remove (fname);
|
|
|
|
int ret = one_test ("W;", 2,
|
|
(char *[2]) { (char *) "bug-getopt4a", (char *) "--a" },
|
|
1, (int [1]) { 'a' });
|
|
|
|
ret |= one_test ("W;", 3,
|
|
(char *[3]) { (char *) "bug-getopt4b", (char *) "-W",
|
|
(char *) "a" },
|
|
1, (int [1]) { 'a' });
|
|
|
|
if (ret == 0)
|
|
puts ("all OK");
|
|
|
|
return ret;
|
|
}
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
#include "../test-skeleton.c"
|