diff options
Diffstat (limited to 'source/test')
-rw-r--r-- | source/test/unittests/thread.test.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/test/unittests/thread.test.c b/source/test/unittests/thread.test.c index a797fee..786e992 100644 --- a/source/test/unittests/thread.test.c +++ b/source/test/unittests/thread.test.c @@ -3,7 +3,9 @@ #define KIT_TEST_FILE thread #include "../../kit_test/test.h" -static int test_nothing(void *_) { } +static int test_nothing(void *_) { + return 0; +} static int test_run(void *data) { int *n = (int *) data; @@ -21,11 +23,13 @@ static int test_exit(void *data) { static int test_yield(void *data) { thrd_yield(); + return 0; } static int test_sleep(void *data) { struct timespec t = { .tv_sec = 0, .tv_nsec = 10000000 }; thrd_sleep(&t, NULL); + return 0; } TEST("thread run") { |