diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-04-07 09:10:47 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-04-07 09:11:45 +0200 |
commit | 776be341d9d0acd240accc07aadcb833b31d5028 (patch) | |
tree | 876eb6987b56b1343bdc7b76a7085e19bddb7114 | |
parent | efb63d91616d5587bf99efab80c85afd205fc1bd (diff) |
-add missing helper
-rw-r--r-- | src/include/gnunet_testing_ng_lib.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/include/gnunet_testing_ng_lib.h b/src/include/gnunet_testing_ng_lib.h index 951158ca4..ed96bb447 100644 --- a/src/include/gnunet_testing_ng_lib.h +++ b/src/include/gnunet_testing_ng_lib.h @@ -271,6 +271,17 @@ GNUNET_TESTING_cmd_end (void); /** + * Turn asynchronous command into synchronous command. + * + * @param cmd command to make synchronous. + * @return a finish-command. + */ +// SUGGESTION (NEW!) +const struct GNUNET_TESTING_Command +TALER_TESTING_cmd_make_synchronous (const struct GNUNET_TESTING_Command cmd); + + +/** * Create (synchronous) command that waits for another command to finish. * If @a cmd_ref did not finish after @a timeout, this command will fail * the test case. @@ -282,7 +293,7 @@ GNUNET_TESTING_cmd_end (void); * @return a finish-command. */ // SUGGESTION (NEW!) -const struct GNUNET_TESTING_Command * +const struct GNUNET_TESTING_Command TALER_TESTING_cmd_finish (const char *finish_label, const char *cmd_ref, struct GNUNET_TIME_Relative timeout); |