aboutsummaryrefslogtreecommitdiff
path: root/src/include
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:14:53 +0200
commit552a2c8a9033ee17faf606b9b42989d179b2ec36 (patch)
treec6fce643469e6ce262f0010c144ae9ecf3bac8d6 /src/include
parentefb63d91616d5587bf99efab80c85afd205fc1bd (diff)
downloadgnunet-552a2c8a9033ee17faf606b9b42989d179b2ec36.tar.gz
gnunet-552a2c8a9033ee17faf606b9b42989d179b2ec36.zip
-add missing helper
Diffstat (limited to 'src/include')
-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..0bc516614 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 synchronous command into asynchronous 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_asynchronous (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);