From f6c3017b3ed9d1547ac1adcf4a3ed86e143f598d Mon Sep 17 00:00:00 2001 From: Gleb Popov <6yearold@gmail.com> Date: Sat, 18 Mar 2023 00:09:38 +0300 Subject: [PATCH] Do not incur insane stack limit in Foundation-ThreadPool test. (#3861) This fixes the test on FreeBSD. --- Foundation/testsuite/src/ThreadPoolTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Foundation/testsuite/src/ThreadPoolTest.cpp b/Foundation/testsuite/src/ThreadPoolTest.cpp index f33219f2f..aebb4d763 100644 --- a/Foundation/testsuite/src/ThreadPoolTest.cpp +++ b/Foundation/testsuite/src/ThreadPoolTest.cpp @@ -35,7 +35,6 @@ ThreadPoolTest::~ThreadPoolTest() void ThreadPoolTest::testThreadPool() { ThreadPool pool(2, 3, 3); - pool.setStackSize(1); assertTrue (pool.allocated() == 2); assertTrue (pool.used() == 0);