From 9841c17b222007ffa3b8ebc72255c80139e76709 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Wed, 7 Dec 2011 12:28:26 +0000 Subject: testing cmd line tool --- src/testing/Makefile.am | 13 ++++++++ src/testing/gnunet-testing.c | 71 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 src/testing/gnunet-testing.c (limited to 'src') diff --git a/src/testing/Makefile.am b/src/testing/Makefile.am index bc81d8d3a..cdd4400c7 100644 --- a/src/testing/Makefile.am +++ b/src/testing/Makefile.am @@ -48,6 +48,9 @@ libgnunettesting_la_LIBADD = $(XLIB) \ $(top_builddir)/src/util/libgnunetutil.la libgnunettesting_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) + +bin_PROGRAMS = \ + gnunet-testing check_PROGRAMS = \ test_testing \ @@ -85,6 +88,16 @@ TESTS = \ test_testing_2dtorus endif +gnunet_testing_SOURCES = \ + gnunet-testing.c +gnunet_testing_LDADD = \ + $(top_builddir)/src/testing/libgnunettesting.la \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(GN_LIBINTL) +#gnunet_testing_DEPENDENCIES = +# libgnunetttesting.la + + test_testing_SOURCES = \ test_testing.c test_testing_LDADD = \ diff --git a/src/testing/gnunet-testing.c b/src/testing/gnunet-testing.c new file mode 100644 index 000000000..63756e502 --- /dev/null +++ b/src/testing/gnunet-testing.c @@ -0,0 +1,71 @@ +/* + This file is part of GNUnet. + (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009 Christian Grothoff (and other contributing authors) + + GNUnet is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published + by the Free Software Foundation; either version 3, or (at your + option) any later version. + + GNUnet is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GNUnet; see the file COPYING. If not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. +*/ + +/** + * @file template/gnunet-testing.c + * @brief tool to use testing functionality from cmd line + * @author Christian Grothoff + */ +#include "platform.h" +#include "gnunet_getopt_lib.h" +#include "gnunet_program_lib.h" + +/** + * Final status code. + */ +static int ret; + +/** + * Main function that will be run by the scheduler. + * + * @param cls closure + * @param args remaining command-line arguments + * @param cfgfile name of the configuration file used (for saving, can be NULL!) + * @param cfg configuration + */ +static void +run (void *cls, char *const *args, const char *cfgfile, + const struct GNUNET_CONFIGURATION_Handle *cfg) +{ + /* main code here */ +} + + +/** + * The main function. + * + * @param argc number of arguments from the command line + * @param argv command line arguments + * @return 0 ok, 1 on error + */ +int +main (int argc, char *const *argv) +{ + static const struct GNUNET_GETOPT_CommandLineOption options[] = { + /* FIMXE: add options here */ + GNUNET_GETOPT_OPTION_END + }; + return (GNUNET_OK == + GNUNET_PROGRAM_run (argc, argv, "gnunet-testing", + gettext_noop ("Command line tool to access the testing library"), options, &run, + NULL)) ? ret : 1; +} + +/* end of gnunet-testing.c */ -- cgit v1.2.3