use timeout option in benchmark

This commit is contained in:
Christian Grothoff 2018-08-10 22:31:46 +02:00
parent b2f602b1ac
commit 1314b5fe20
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -428,8 +428,9 @@ run (void *cls,
unit);
}
all_commands[1 + howmany_coins] = TALER_TESTING_cmd_end ();
TALER_TESTING_run (is,
all_commands);
TALER_TESTING_run2 (is,
all_commands,
GNUNET_TIME_UNIT_FOREVER_REL); /* no timeout */
result = 1;
}
@ -586,6 +587,9 @@ parallel_benchmark (TALER_TESTING_Main main_cb,
NULL,
cfg_filename,
exchanged);
if (GNUNET_OK != result)
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Failure in child process test suite!\n");
if (GNUNET_OK == result)
exit (0);
else