odyssey/test/machinarium/test_join.c

56 lines
718 B
C

#include <machinarium.h>
#include <odyssey_test.h>
static void
test_child_a(void *arg)
{
(void)arg;
machine_sleep(100);
}
static void
test_child_b(void *arg)
{
(void)arg;
machine_sleep(300);
}
static void
test_waiter(void *arg)
{
(void)arg;
int64_t a, b;
b = machine_coroutine_create(test_child_b, NULL);
test(b != -1);
a = machine_coroutine_create(test_child_a, NULL);
test(a != -1);
int rc;
rc = machine_join(a);
test(rc == 0);
rc = machine_join(b);
test(rc == 0);
machine_stop();
}
void
machinarium_test_join(void)
{
machinarium_init();
int id;
id = machine_create("test", test_waiter, NULL);
test(id != -1);
int rc;
rc = machine_wait(id);
test(rc != -1);
machinarium_free();
}