diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-06-21 00:17:16 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-06-21 00:17:16 +0200 |
commit | 9c51720cbfb86c89bc1f1872432c4f6a66fba5bd (patch) | |
tree | 56eede9e232962013b09afa2efc3c1cb37f41e0f /src/include | |
parent | 108bf57d048a135cb71f9453540c9d6579ae2028 (diff) |
fixing parallel fakebank to ensure transactions are ordered, fixing indices/constraint preservation after DB update to 0002
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_testing_lib.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h index b35e393dc..57bf7406a 100644 --- a/src/include/taler_testing_lib.h +++ b/src/include/taler_testing_lib.h @@ -173,6 +173,18 @@ TALER_TESTING_wait_exchange_ready (const char *base_url); /** + * Wait for an HTTPD service to have started. Waits for at + * most 10s, after that returns 77 to indicate an error. + * + * @param base_url what URL should we expect the exchange + * to be running at + * @return 0 on success + */ +int +TALER_TESTING_wait_httpd_ready (const char *base_url); + + +/** * Wait for the auditor to have started. Waits for at * most 10s, after that returns 77 to indicate an error. * |