diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-09-15 13:13:29 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-09-15 13:13:29 +0200 |
commit | ff0a206f9d93060e50818613ec9397b188242fe2 (patch) | |
tree | bb28174a176a3027d5530c1b37aa7cf3b4b40fe4 | |
parent | 0647bec86c7d94b081731b4baeea66cf75a54f4a (diff) | |
download | exchange-ff0a206f9d93060e50818613ec9397b188242fe2.tar.gz exchange-ff0a206f9d93060e50818613ec9397b188242fe2.zip |
use single line
-rw-r--r-- | src/bank-lib/testing_api_helpers.c | 3 | ||||
-rw-r--r-- | src/lib/testing_api_helpers.c | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/src/bank-lib/testing_api_helpers.c b/src/bank-lib/testing_api_helpers.c index e2a980ec8..5d371a1a5 100644 --- a/src/bank-lib/testing_api_helpers.c +++ b/src/bank-lib/testing_api_helpers.c | |||
@@ -204,8 +204,7 @@ TALER_TESTING_run_bank (const char *config_filename, | |||
204 | } | 204 | } |
205 | 205 | ||
206 | GNUNET_asprintf (&wget_cmd, | 206 | GNUNET_asprintf (&wget_cmd, |
207 | "wget -q -t 1 -T 1 %s" | 207 | "wget -q -t 1 -T 1 %s -o /dev/null -O /dev/null", |
208 | " -o /dev/null -O /dev/null", | ||
209 | bank_url); | 208 | bank_url); |
210 | 209 | ||
211 | /* give child time to start and bind against the socket */ | 210 | /* give child time to start and bind against the socket */ |
diff --git a/src/lib/testing_api_helpers.c b/src/lib/testing_api_helpers.c index 84221c065..a7b45e600 100644 --- a/src/lib/testing_api_helpers.c +++ b/src/lib/testing_api_helpers.c | |||
@@ -600,8 +600,7 @@ TALER_TESTING_wait_exchange_ready (const char *base_url) | |||
600 | unsigned int iter; | 600 | unsigned int iter; |
601 | 601 | ||
602 | GNUNET_asprintf (&wget_cmd, | 602 | GNUNET_asprintf (&wget_cmd, |
603 | "wget -q -t 1 -T 1 %skeys" | 603 | "wget -q -t 1 -T 1 %skeys -o /dev/null -O /dev/null", |
604 | " -o /dev/null -O /dev/null", | ||
605 | base_url); // make sure ends with '/' | 604 | base_url); // make sure ends with '/' |
606 | /* give child time to start and bind against the socket */ | 605 | /* give child time to start and bind against the socket */ |
607 | fprintf (stderr, | 606 | fprintf (stderr, |
@@ -642,8 +641,7 @@ TALER_TESTING_wait_auditor_ready (const char *base_url) | |||
642 | unsigned int iter; | 641 | unsigned int iter; |
643 | 642 | ||
644 | GNUNET_asprintf (&wget_cmd, | 643 | GNUNET_asprintf (&wget_cmd, |
645 | "wget -q -t 1 -T 1 %sversion" | 644 | "wget -q -t 1 -T 1 %sversion -o /dev/null -O /dev/null", |
646 | " -o /dev/null -O /dev/null", | ||
647 | base_url); // make sure ends with '/' | 645 | base_url); // make sure ends with '/' |
648 | /* give child time to start and bind against the socket */ | 646 | /* give child time to start and bind against the socket */ |
649 | fprintf (stderr, | 647 | fprintf (stderr, |