aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-04-07 09:10:47 +0200
committerChristian Grothoff <christian@grothoff.org>2021-04-07 09:11:45 +0200
commit776be341d9d0acd240accc07aadcb833b31d5028 (patch)
tree876eb6987b56b1343bdc7b76a7085e19bddb7114
parentefb63d91616d5587bf99efab80c85afd205fc1bd (diff)
downloadgnunet-776be341d9d0acd240accc07aadcb833b31d5028.tar.gz
gnunet-776be341d9d0acd240accc07aadcb833b31d5028.zip
-add missing helper
-rw-r--r--src/include/gnunet_testing_ng_lib.h13
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);
271 271
272 272
273/** 273/**
274 * Turn asynchronous command into synchronous command.
275 *
276 * @param cmd command to make synchronous.
277 * @return a finish-command.
278 */
279// SUGGESTION (NEW!)
280const struct GNUNET_TESTING_Command
281TALER_TESTING_cmd_make_synchronous (const struct GNUNET_TESTING_Command cmd);
282
283
284/**
274 * Create (synchronous) command that waits for another command to finish. 285 * Create (synchronous) command that waits for another command to finish.
275 * If @a cmd_ref did not finish after @a timeout, this command will fail 286 * If @a cmd_ref did not finish after @a timeout, this command will fail
276 * the test case. 287 * the test case.
@@ -282,7 +293,7 @@ GNUNET_TESTING_cmd_end (void);
282 * @return a finish-command. 293 * @return a finish-command.
283 */ 294 */
284// SUGGESTION (NEW!) 295// SUGGESTION (NEW!)
285const struct GNUNET_TESTING_Command * 296const struct GNUNET_TESTING_Command
286TALER_TESTING_cmd_finish (const char *finish_label, 297TALER_TESTING_cmd_finish (const char *finish_label,
287 const char *cmd_ref, 298 const char *cmd_ref,
288 struct GNUNET_TIME_Relative timeout); 299 struct GNUNET_TIME_Relative timeout);