diff options
Diffstat (limited to 'src/auditor-lib/test_auditor_api.c')
-rw-r--r-- | src/auditor-lib/test_auditor_api.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/auditor-lib/test_auditor_api.c b/src/auditor-lib/test_auditor_api.c index 1702260d..9db6bb42 100644 --- a/src/auditor-lib/test_auditor_api.c +++ b/src/auditor-lib/test_auditor_api.c @@ -125,9 +125,22 @@ static char *exchange_url; EXCHANGE_ACCOUNT_NO, USER_LOGIN_NAME, USER_LOGIN_PASS, \ subject, exchange_url) +/** + * Run the taler-auditor. + * + * @param label label to use for the command. + */ #define CMD_RUN_AUDITOR(label) \ TALER_TESTING_cmd_exec_auditor (label, CONFIG_FILE) +/** + * Run the taler-wire-auditor. + * + * @param label label to use for the command. + */ +#define CMD_RUN_WIRE_AUDITOR(label) \ + TALER_TESTING_cmd_exec_wire_auditor (label, CONFIG_FILE) + /** * Main function that will tell the interpreter what commands to @@ -140,8 +153,8 @@ run (void *cls, struct TALER_TESTING_Interpreter *is) { struct TALER_TESTING_Command commands[] = { - CMD_RUN_AUDITOR_DBINIT("virgin-auditor"), CMD_RUN_AUDITOR("virgin-auditor"), + CMD_RUN_WIRE_AUDITOR("virgin-wire-auditor"), /** * End the suite. Fixme: better to have a label for this |