multiple operation queues for an operation
[oweals/gnunet.git] / src / testbed / test_testbed_api_operations.c
index eea91970529f406e00966d7fcfbe564fe195e0e0..45f2db1033da8f398f69498e007f47edebc33f99 100644 (file)
@@ -194,8 +194,10 @@ run (void *cls, char *const *args, const char *cfgfile,
   op2 = GNUNET_TESTBED_operation_create_ (&op2, start_cb, release_cb);
   GNUNET_TESTBED_operation_queue_insert_ (q1, op1);
   GNUNET_TESTBED_operation_queue_insert_ (q2, op1);
+  GNUNET_TESTBED_operation_begin_wait_ (op1);
   GNUNET_TESTBED_operation_queue_insert_ (q1, op2);
   GNUNET_TESTBED_operation_queue_insert_ (q2, op2);
+  GNUNET_TESTBED_operation_begin_wait_ (op2);
   result = TEST_INIT;
 }
 
@@ -223,3 +225,5 @@ main (int argc, char **argv)
   q2 = NULL;
   return 0;
 }
+
+/* end of test_testbed_api_operations.c */