fix FTBFS

This commit is contained in:
Christian Grothoff 2020-04-11 21:06:04 +02:00
parent 2d83516871
commit 88bb7f4428
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 24 additions and 5 deletions

View File

@ -121,6 +121,26 @@ purge_process (struct GNUNET_OS_Process *process)
}
/**
* Runs #TALER_TESTING_setup() using the configuration.
*
* @param cls unused
* @param cfg configuration to use
* @return status code
*/
static int
setup_with_cfg (void *cls,
const struct GNUNET_CONFIGURATION_Handle *cfg)
{
(void) cls;
return TALER_TESTING_setup (&run,
NULL,
cfg,
NULL,
GNUNET_NO);
}
int
main (int argc,
char *const *argv)
@ -196,11 +216,9 @@ main (int argc,
}
}
ret = TALER_TESTING_setup (&run,
NULL,
cfgfilename,
NULL,
GNUNET_NO);
ret = GNUNET_CONFIGURATION_parse_and_run (cfgfilename,
&setup_with_cfg,
NULL);
purge_process (twisterd);
if (GNUNET_NO == with_fakebank)

View File

@ -299,6 +299,7 @@ main (int argc,
TALER_TESTING_cleanup_files (CONFIG_FILE);
switch (TALER_TESTING_prepare_exchange (CONFIG_FILE,
GNUNET_YES,
&ec))
{
case GNUNET_SYSERR: