fix test setup invocation

This commit is contained in:
Florian Dold 2018-08-19 11:41:58 +02:00
parent ec08232b3f
commit 1541f2c2d6
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 4 additions and 2 deletions

View File

@ -170,7 +170,8 @@ main(int argc,
ret = TALER_TESTING_setup (&run, ret = TALER_TESTING_setup (&run,
NULL, NULL,
CONFIG_FILE, CONFIG_FILE,
NULL); // means no exchange. NULL,
GNUNET_NO); // means no exchange.
GNUNET_OS_process_kill (bankd, SIGKILL); GNUNET_OS_process_kill (bankd, SIGKILL);
GNUNET_OS_process_wait (bankd); GNUNET_OS_process_wait (bankd);

View File

@ -217,7 +217,8 @@ main (int argc,
return (GNUNET_OK == TALER_TESTING_setup (&run, return (GNUNET_OK == TALER_TESTING_setup (&run,
NULL, NULL,
CONFIG_FILE, CONFIG_FILE,
NULL)) ? 0 : 1; NULL,
GNUNET_NO)) ? 0 : 1;
} }