gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r18490 - gnunet/src/testing


From: gnunet
Subject: [GNUnet-SVN] r18490 - gnunet/src/testing
Date: Wed, 7 Dec 2011 13:28:27 +0100

Author: wachs
Date: 2011-12-07 13:28:26 +0100 (Wed, 07 Dec 2011)
New Revision: 18490

Added:
   gnunet/src/testing/gnunet-testing.c
Modified:
   gnunet/src/testing/Makefile.am
Log:
testing cmd line tool


Modified: gnunet/src/testing/Makefile.am
===================================================================
--- gnunet/src/testing/Makefile.am      2011-12-07 09:32:08 UTC (rev 18489)
+++ gnunet/src/testing/Makefile.am      2011-12-07 12:28:26 UTC (rev 18490)
@@ -48,6 +48,9 @@
  $(top_builddir)/src/util/libgnunetutil.la 
 libgnunettesting_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS)
+ 
+bin_PROGRAMS = \
+ gnunet-testing
 
 check_PROGRAMS = \
  test_testing \
@@ -85,6 +88,16 @@
  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 = \

Added: gnunet/src/testing/gnunet-testing.c
===================================================================
--- gnunet/src/testing/gnunet-testing.c                         (rev 0)
+++ gnunet/src/testing/gnunet-testing.c 2011-12-07 12:28:26 UTC (rev 18490)
@@ -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 */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]