diff options
Diffstat (limited to 'source/test/unittests/thread.test.c')
-rw-r--r-- | source/test/unittests/thread.test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/test/unittests/thread.test.c b/source/test/unittests/thread.test.c index f60ad18..a797fee 100644 --- a/source/test/unittests/thread.test.c +++ b/source/test/unittests/thread.test.c @@ -39,7 +39,7 @@ TEST("thread run") { TEST("thread stack size") { thrd_t foo; - REQUIRE(thrd_create_with_stack(&foo, test_nothing, NULL, 200000) == + REQUIRE(thrd_create_with_stack(&foo, test_nothing, NULL, 30000) == thrd_success); REQUIRE(thrd_join(foo, NULL) == thrd_success); } |