summaryrefslogtreecommitdiff
path: root/test/argp/tst-argp1.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-03 20:19:02 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-03 20:19:02 +0100
commit24b4b8b66366176b40525baa1b2f056e8a68d0ce (patch)
treec705733ff04ff1d089eff6494622668632565a62 /test/argp/tst-argp1.c
parent3384c45e66ddf18f235654b67ae34ac7dcb07534 (diff)
argp: be sure uClibc-ng feature is available
Diffstat (limited to 'test/argp/tst-argp1.c')
-rw-r--r--test/argp/tst-argp1.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/argp/tst-argp1.c b/test/argp/tst-argp1.c
index 912e0cb..c3be15d 100644
--- a/test/argp/tst-argp1.c
+++ b/test/argp/tst-argp1.c
@@ -16,11 +16,9 @@
License along with the GNU C Library; see the file COPYING.LIB. If
not, see <http://www.gnu.org/licenses/>.  */
+#if (defined(__GLIBC__) && !defined(__UCLIBC__)) || defined(__UCLIBC_HAS_ARGP__)
#include <argp.h>
-
-
-
#define OPT_TO_THREAD 300
#define OPT_TO_PROCESS 301
#define OPT_SYNC_SIGNAL 302
@@ -90,11 +88,12 @@ static struct argp argp =
{
test_options, parse_opt
};
-
+#endif
static int
do_test (void)
{
+#if (defined(__GLIBC__) && !defined(__UCLIBC__)) || defined(__UCLIBC_HAS_ARGP__)
int argc = 2;
char *argv[3] = { (char *) "tst-argp1", (char *) "--help", NULL };
int remaining;
@@ -103,15 +102,20 @@ do_test (void)
argp_parse (&argp, argc, argv, 0, &remaining, NULL);
return 0;
+#else
+ return 23;
+#endif
}
+#if (defined(__GLIBC__) && !defined(__UCLIBC__)) || defined(__UCLIBC_HAS_ARGP__)
/* Handle program arguments. */
static error_t
parse_opt (int key, char *arg, struct argp_state *state)
{
return ARGP_ERR_UNKNOWN;
}
+#endif
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"