mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
Add test case for last argp bug.
This commit is contained in:
parent
8c6de69d00
commit
7ebaec64a0
@ -1,3 +1,8 @@
|
|||||||
|
2010-04-04 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* argp/Makefile: Add rules to build and run bug-argp2.
|
||||||
|
* argp/bug-argp2.c: New file.
|
||||||
|
|
||||||
2010-02-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
2010-02-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||||||
|
|
||||||
[BZ #11254]
|
[BZ #11254]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1997, 2002, 2003, 2006, 2007 Free Software Foundation, Inc.
|
# Copyright (C) 1997,2002,2003,2006,2007,2010 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -26,12 +26,13 @@ distribute = argp-fmtstream.h argp-namefrob.h
|
|||||||
routines = $(addprefix argp-, ba fmtstream fs-xinl help parse pv \
|
routines = $(addprefix argp-, ba fmtstream fs-xinl help parse pv \
|
||||||
pvh xinl eexst)
|
pvh xinl eexst)
|
||||||
|
|
||||||
tests = argp-test tst-argp1 bug-argp1 tst-argp2
|
tests = argp-test tst-argp1 bug-argp1 tst-argp2 bug-argp2
|
||||||
|
|
||||||
CFLAGS-argp-help.c = $(uses-callbacks) -fexceptions
|
CFLAGS-argp-help.c = $(uses-callbacks) -fexceptions
|
||||||
CFLAGS-argp-parse.c = $(uses-callbacks)
|
CFLAGS-argp-parse.c = $(uses-callbacks)
|
||||||
CFLAGS-argp-fmtstream.c = -fexceptions
|
CFLAGS-argp-fmtstream.c = -fexceptions
|
||||||
|
|
||||||
bug-argp1-ARGS = -- --help
|
bug-argp1-ARGS = -- --help
|
||||||
|
bug-argp2-ARGS = -- -d 111 --dstaddr 222 -p 333 --peer 444
|
||||||
|
|
||||||
include ../Rules
|
include ../Rules
|
||||||
|
55
argp/bug-argp2.c
Normal file
55
argp/bug-argp2.c
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
#include <argp.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
static struct argp_option argp_options[] = {
|
||||||
|
{ "dstaddr", 'd', "ADDR", 0,
|
||||||
|
"set destination (peer) address to ADDR" },
|
||||||
|
{ "peer", 'p', "ADDR", OPTION_ALIAS },
|
||||||
|
{ NULL }
|
||||||
|
};
|
||||||
|
|
||||||
|
static error_t parse_opt (int key, char *arg, struct argp_state *state);
|
||||||
|
|
||||||
|
static struct argp argp =
|
||||||
|
{
|
||||||
|
argp_options, parse_opt
|
||||||
|
};
|
||||||
|
|
||||||
|
static int cnt;
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_test (int argc, char *argv[])
|
||||||
|
{
|
||||||
|
int remaining;
|
||||||
|
argp_parse (&argp, argc, argv, 0, &remaining, NULL);
|
||||||
|
return cnt != 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
static error_t
|
||||||
|
parse_opt (int key, char *arg, struct argp_state *state)
|
||||||
|
{
|
||||||
|
switch (key)
|
||||||
|
{
|
||||||
|
case 'd':
|
||||||
|
case 'p':
|
||||||
|
printf ("got '%c' with argument '%s'\n", key, arg);
|
||||||
|
++cnt;
|
||||||
|
break;
|
||||||
|
case 0:
|
||||||
|
case ARGP_KEY_END:
|
||||||
|
case ARGP_KEY_NO_ARGS:
|
||||||
|
case ARGP_KEY_INIT:
|
||||||
|
case ARGP_KEY_SUCCESS:
|
||||||
|
case ARGP_KEY_FINI:
|
||||||
|
// Ignore.
|
||||||
|
return ARGP_ERR_UNKNOWN;
|
||||||
|
default:
|
||||||
|
printf ("invalid key '%x'\n", key);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define TEST_FUNCTION do_test (argc, argv)
|
||||||
|
#include "../test-skeleton.c"
|
Loading…
Reference in New Issue
Block a user