aboutsummaryrefslogtreecommitdiff
path: root/src/lib/testing_api_helpers.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-12-07 17:20:09 +0100
committerChristian Grothoff <christian@grothoff.org>2019-12-07 17:20:09 +0100
commit9cbd1cc139217cc33ac1943d165e9b89ca5a8668 (patch)
tree9f1e1cb8380ad8116ae2dd3307f042d39ef90504 /src/lib/testing_api_helpers.c
parent91a418fe804ed3b1b59f860c0f8e3bfc62b75691 (diff)
downloadexchange-9cbd1cc139217cc33ac1943d165e9b89ca5a8668.tar.xz
report on file used
Diffstat (limited to 'src/lib/testing_api_helpers.c')
-rw-r--r--src/lib/testing_api_helpers.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/testing_api_helpers.c b/src/lib/testing_api_helpers.c
index 2e1fb2d06..cc8430784 100644
--- a/src/lib/testing_api_helpers.c
+++ b/src/lib/testing_api_helpers.c
@@ -674,7 +674,6 @@ TALER_TESTING_wait_auditor_ready (const char *base_url)
* @param main_cb routine containing all the commands to run.
* @param main_cb_cls closure for @a main_cb, typically NULL.
* @param config_file configuration file for the test-suite.
- *
* @return #GNUNET_OK if all is okay, != #GNUNET_OK otherwise.
* non-#GNUNET_OK codes are #GNUNET_SYSERR most of the
* time.
@@ -691,11 +690,11 @@ TALER_TESTING_setup_with_exchange (TALER_TESTING_Main main_cb,
};
int result;
- if (GNUNET_OK !=
- (result = GNUNET_CONFIGURATION_parse_and_run (config_filename,
- &
- TALER_TESTING_setup_with_exchange_cfg,
- &setup_ctx)))
+ result =
+ GNUNET_CONFIGURATION_parse_and_run (config_filename,
+ &TALER_TESTING_setup_with_exchange_cfg,
+ &setup_ctx);
+ if (GNUNET_OK != result)
return result;
return GNUNET_OK;
}