From a1acd8d8d89a86b7c5e18624eec0e1811f22a0a1 Mon Sep 17 00:00:00 2001 From: "Nathan S. Evans" Date: Mon, 10 May 2010 12:43:22 +0000 Subject: better failure handling --- src/testing/test_testing_group.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/testing/test_testing_group.c') diff --git a/src/testing/test_testing_group.c b/src/testing/test_testing_group.c index 8458bfbd6..966945003 100644 --- a/src/testing/test_testing_group.c +++ b/src/testing/test_testing_group.c @@ -19,7 +19,7 @@ */ /** * @file testing/test_testing_group.c - * @brief testcase for functions to connect two peers in testing.c + * @brief testcase for functions to connect peers in testing.c */ #include "platform.h" #include "gnunet_testing_lib.h" @@ -38,6 +38,8 @@ static int ok; static int peers_left; +static int failed_peers; + static struct GNUNET_TESTING_PeerGroup *pg; static struct GNUNET_SCHEDULER_Handle *sched; @@ -52,9 +54,11 @@ my_cb (void *cls, if (id == NULL) { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start callback called with error (too long starting peers), aborting test!\n"); - GNUNET_TESTING_daemons_stop (pg); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error from testing: `%s'\n"); + failed_peers++; ok = 7; } + peers_left--; if (peers_left == 0) { @@ -63,6 +67,10 @@ my_cb (void *cls, GNUNET_TESTING_daemons_stop (pg); ok = 0; } + else if (failed_peers == peers_left) + { + GNUNET_TESTING_daemons_stop (pg); + } } -- cgit v1.2.3