X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fnat%2Ftest_nat_test.c;h=752c8f145f7e01a234510da5626835fdea1b223c;hb=089eddeb68306fb55c4876c00d4f67def990dced;hp=846d9b08e90ae7c5da37ae33790c640c1c71b264;hpb=16546613251edfcd595e4f584b1a2d2a414d0b1a;p=oweals%2Fgnunet.git diff --git a/src/nat/test_nat_test.c b/src/nat/test_nat_test.c index 846d9b08e..752c8f145 100644 --- a/src/nat/test_nat_test.c +++ b/src/nat/test_nat_test.c @@ -26,14 +26,9 @@ * @author Christian Grothoff */ #include "platform.h" -#include "gnunet_common.h" #include "gnunet_util_lib.h" #include "gnunet_nat_lib.h" - -#define VERBOSE GNUNET_NO - - /** * Time to wait before stopping NAT test, in seconds */ @@ -84,31 +79,19 @@ main (int argc, char *const argv[]) GNUNET_GETOPT_OPTION_END }; struct GNUNET_OS_Process *gns; - int nat_res; - char *const argv_prog[] = { "test-nat-test", "-c", "test_nat_test_data.conf", - "-L", -#if VERBOSE - "DEBUG", -#else - "WARNING", -#endif NULL }; GNUNET_log_setup ("test-nat-test", -#if VERBOSE - "DEBUG", -#else "WARNING", -#endif NULL); - nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server"); + nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server", GNUNET_NO, NULL); if (GNUNET_SYSERR == nat_res) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, @@ -118,18 +101,17 @@ main (int argc, char *const argv[]) } gns = - GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-nat-server", + GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, "gnunet-nat-server", "gnunet-nat-server", -#if VERBOSE - "-L", "DEBUG", -#endif "-c", "test_nat_test_data.conf", "12345", NULL); GNUNET_assert (NULL != gns); - GNUNET_PROGRAM_run (5, argv_prog, "test-nat-test", "nohelp", options, &run, + GNUNET_PROGRAM_run (3, argv_prog, "test-nat-test", "nohelp", options, &run, NULL); - GNUNET_break (0 == GNUNET_OS_process_kill (gns, SIGTERM)); + GNUNET_break (0 == GNUNET_OS_process_kill (gns, GNUNET_TERM_SIG)); GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (gns)); GNUNET_OS_process_destroy (gns); + if (0 != ret) + fprintf (stderr, "NAT test failed to report success\n"); return ret; }