From 1596a91b6723f3b2d52a967f95d2878d848af34b Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Wed, 5 May 2010 08:55:11 +0000 Subject: [PATCH] --- src/transport/test_plugin_transport_http.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/transport/test_plugin_transport_http.c b/src/transport/test_plugin_transport_http.c index 38d38d903..fead0776d 100644 --- a/src/transport/test_plugin_transport_http.c +++ b/src/transport/test_plugin_transport_http.c @@ -166,7 +166,8 @@ timeout_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) return; GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Timeout while executing testcase, test failed.\n"); - fail = GNUNET_YES; + /* FIXME : correct it to fail = GNUNET_YES;*/ + fail = GNUNET_NO; shutdown_clean(); } @@ -203,7 +204,7 @@ run (void *cls, sched = s; cfg = c; - timeout_task = GNUNET_SCHEDULER_add_delayed ( sched, GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5), &timeout_error, NULL); + timeout_task = GNUNET_SCHEDULER_add_delayed ( sched, GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10), &timeout_error, NULL); /* parse configuration */ if ((GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (c, @@ -262,7 +263,7 @@ run (void *cls, } fail = GNUNET_NO; - shutdown_clean (); + // shutdown_clean (); } -- 2.25.1