X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fnat%2Ftest_nat_test.c;h=64617880aae5dbe4529f6a287b12003d5a37da7a;hb=57aab79c1d1b7036018eca127501632e85c4b37b;hp=520d82d92980a583454e92df0bb739e06b2c871b;hpb=502af2167f7c218366666ca4944bd7cc54b5b19a;p=oweals%2Fgnunet.git diff --git a/src/nat/test_nat_test.c b/src/nat/test_nat_test.c index 520d82d92..64617880a 100644 --- a/src/nat/test_nat_test.c +++ b/src/nat/test_nat_test.c @@ -35,7 +35,7 @@ /** - * Time to wait before stopping NAT test, in seconds + * Time to wait before stopping NAT test, in seconds */ #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15) @@ -65,12 +65,12 @@ report_success (void *cls, int success) * Main function run with scheduler. */ static void -run (void *cls, - char *const *args, - const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) +run (void *cls, char *const *args, const char *cfgfile, + const struct GNUNET_CONFIGURATION_Handle *cfg) { - tst = GNUNET_NAT_test_start (cfg, GNUNET_YES, - 1285, 1285, &report_success, NULL); + tst = + GNUNET_NAT_test_start (cfg, GNUNET_YES, 1285, 1285, &report_success, + NULL); if (NULL == tst) return; end = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_test, NULL); @@ -85,6 +85,8 @@ main (int argc, char *const argv[]) }; struct GNUNET_OS_Process *gns; + int nat_res; + char *const argv_prog[] = { "test-nat-test", "-c", @@ -105,16 +107,26 @@ main (int argc, char *const argv[]) "WARNING", #endif NULL); - gns = GNUNET_OS_start_process (NULL, NULL, - "gnunet-nat-server", "gnunet-nat-server", + + nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server"); + if (GNUNET_SYSERR == nat_res) + { + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Cannot run NAT test: `%s' file not found\n", + "gnunet-nat-server"); + return 0; + } + + gns = + GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-nat-server", + "gnunet-nat-server", #if VERBOSE - "-L", "DEBUG", + "-L", "DEBUG", #endif - "-c", "test_nat_test_data.conf", - "12345", NULL); + "-c", "test_nat_test_data.conf", "12345", NULL); GNUNET_assert (NULL != gns); - GNUNET_PROGRAM_run (5, argv_prog, - "test-nat-test", "nohelp", options, &run, NULL); + GNUNET_PROGRAM_run (5, argv_prog, "test-nat-test", "nohelp", options, &run, + NULL); GNUNET_break (0 == GNUNET_OS_process_kill (gns, SIGTERM)); GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (gns)); GNUNET_OS_process_close (gns);