exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 9316f63b7f869cd3a9124b3a846aeb2ba2022563
parent aa360e0ccdbb403159dad0d743a74ea6e851b4ad
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu, 23 Aug 2018 22:47:50 +0200

exchange benchmark: add option to linger around after we're done

Diffstat:
Msrc/benchmark/taler-exchange-benchmark.c | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c @@ -198,6 +198,12 @@ static char *remote_host; */ static char *remote_dir; +/** + * Don't kill exchange/fakebank/wirewatch until + * requested by the user explicitly. + */ +static int linger; + /** * Decide which exchange account is going to be @@ -735,6 +741,12 @@ parallel_benchmark (TALER_TESTING_Main main_cb, if (MODE_EXCHANGE == mode) getchar (); + if ( (GNUNET_YES == linger) && ( (mode == MODE_BOTH || mode == MODE_CLIENT ) ) ) + { + printf("press ENTER to stop\n"); + getchar (); + } + if (MODE_CLIENT == mode) { GNUNET_assert (NULL != exchange_slave); @@ -828,6 +840,10 @@ main (int argc, "LF", "will log to file LF", &logfile), + GNUNET_GETOPT_option_flag ('K', + "linger", + "linger around until key press", + &linger), GNUNET_GETOPT_OPTION_END };