aboutsummaryrefslogtreecommitdiff
path: root/src/core/test_core_api_reliability.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-03-23 19:58:15 +0000
committerChristian Grothoff <christian@grothoff.org>2013-03-23 19:58:15 +0000
commit856ce6820e23c219d58816dd12b5a99a59b9e667 (patch)
tree09d68ae186fd120e7304e53279746071b90db729 /src/core/test_core_api_reliability.c
parent9eba16d41ea69bb3a2ea990efe7739c174d99387 (diff)
downloadgnunet-856ce6820e23c219d58816dd12b5a99a59b9e667.tar.gz
gnunet-856ce6820e23c219d58816dd12b5a99a59b9e667.zip
-simplify
Diffstat (limited to 'src/core/test_core_api_reliability.c')
-rw-r--r--src/core/test_core_api_reliability.c23
1 files changed, 7 insertions, 16 deletions
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
index 47ade350c..5e9267096 100644
--- a/src/core/test_core_api_reliability.c
+++ b/src/core/test_core_api_reliability.c
@@ -461,8 +461,9 @@ stop_arm (struct PeerContext *p)
461 GNUNET_CONFIGURATION_destroy (p->cfg); 461 GNUNET_CONFIGURATION_destroy (p->cfg);
462} 462}
463 463
464static int 464
465check () 465int
466main (int argc, char *argv[])
466{ 467{
467 char *const argv[] = { "test-core-api-reliability", 468 char *const argv[] = { "test-core-api-reliability",
468 "-c", 469 "-c",
@@ -473,28 +474,18 @@ check ()
473 GNUNET_GETOPT_OPTION_END 474 GNUNET_GETOPT_OPTION_END
474 }; 475 };
475 ok = 1; 476 ok = 1;
477 GNUNET_log_setup ("test-core-api",
478 "WARNING",
479 NULL);
476 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, 480 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
477 "test-core-api-reliability", "nohelp", options, &run, 481 "test-core-api-reliability", "nohelp", options, &run,
478 &ok); 482 &ok);
479 stop_arm (&p1); 483 stop_arm (&p1);
480 stop_arm (&p2); 484 stop_arm (&p2);
481 return ok;
482}
483
484
485int
486main (int argc, char *argv[])
487{
488 int ret;
489
490 GNUNET_log_setup ("test-core-api",
491 "WARNING",
492 NULL);
493 ret = check ();
494 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-1"); 485 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-1");
495 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-2"); 486 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-2");
496 487
497 return ret; 488 return ok;
498} 489}
499 490
500/* end of test_core_api_reliability.c */ 491/* end of test_core_api_reliability.c */