threading_posix: Increase stack size in test
16 KB is not enough for the linux thread to be spawned so bump up to 16MB
This commit is contained in:
committed by
Rick Gibbed
parent
d76e408681
commit
aa332dcc8e
@@ -813,7 +813,7 @@ TEST_CASE("Create and Run Thread", "Thread") {
|
||||
result = Wait(Thread::GetCurrentThread(), false, 50ms);
|
||||
REQUIRE(result == WaitResult::kTimeout);
|
||||
|
||||
params.stack_size = 16 * 1024;
|
||||
params.stack_size = 16 * 1024 * 1024;
|
||||
thread = Thread::Create(params, [] {
|
||||
while (true) {
|
||||
Thread::Exit(-1);
|
||||
|
||||
Reference in New Issue
Block a user