commit 22d2eb884b971c0684a215bab3642e21bd8a2fc8
parent 5863496cecb86ce0b9d62ad3a315412e679c3376
Author: Florian Dold <florian.dold@gmail.com>
Date: Tue, 27 Aug 2013 15:03:09 +0000
consistent output with gnunet-testing-run-service
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/testing/gnunet-testing.c b/src/testing/gnunet-testing.c
@@ -315,6 +315,10 @@ run_no_scheduler (void *cls, char *const *args, const char *cfgfile,
{
ret = GNUNET_TESTING_service_run ("gnunet_service_test", run_service_name,
cfgfile, &testing_main, NULL);
+ if (0 != ret)
+ printf ("error\n");
+ else
+ printf ("bye\n");
return;
}