about summary refs log tree commit diff
path: root/argp
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-17 19:21:04 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-17 19:21:04 +0000
commit4c7e2bb082501743a1bd1d0c2a49e392209f63ba (patch)
tree4b404fb9c1605e421f21553214de6014a3b91ebc /argp
parent5a0e429dd8203586aaefc4064f246aa6f592f8e0 (diff)
downloadglibc-4c7e2bb082501743a1bd1d0c2a49e392209f63ba.tar.gz
glibc-4c7e2bb082501743a1bd1d0c2a49e392209f63ba.tar.xz
glibc-4c7e2bb082501743a1bd1d0c2a49e392209f63ba.zip
Use test-skeleton.c.
Diffstat (limited to 'argp')
-rw-r--r--argp/tst-argp1.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/argp/tst-argp1.c b/argp/tst-argp1.c
index c72185e15d..2367d219e8 100644
--- a/argp/tst-argp1.c
+++ b/argp/tst-argp1.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
 
@@ -29,7 +29,7 @@
 #define OPT_TOPLEVEL		304
 
 
-static const struct argp_option options[] =
+static const struct argp_option test_options[] =
   {
     { NULL, 0, NULL, 0, "\
 This is a test for threads so we allow ther user to selection the number of \
@@ -89,12 +89,12 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state);
 /* Data structure to communicate with argp functions.  */
 static struct argp argp =
 {
-  options, parse_opt
+  test_options, parse_opt
 };
 
 
-int
-main (void)
+static int
+do_test (void)
 {
   int argc = 2;
   char *argv[3] = { (char *) "tst-argp1", (char *) "--help", NULL };
@@ -113,3 +113,6 @@ parse_opt (int key, char *arg, struct argp_state *state)
 {
   return ARGP_ERR_UNKNOWN;
 }
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"