From 174317429f3f50fc35ec016ba6f8d11a1f2c67b7 Mon Sep 17 00:00:00 2001 From: Alexander Mai Date: Sat, 28 Nov 2015 12:04:03 +0100 Subject: [PATCH] Reduce number of threads TestThreadExecutor::many_threads a bit. Especially runs with dynamic analysis tools (asan/ubsan/etc.) cause very high system load. --- test/testthreadexecutor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testthreadexecutor.cpp b/test/testthreadexecutor.cpp index 57842a07b..ff5fc2f8f 100644 --- a/test/testthreadexecutor.cpp +++ b/test/testthreadexecutor.cpp @@ -86,7 +86,7 @@ private: } void many_threads() { - check(20, 100, 100, + check(16, 100, 100, "int main()\n" "{\n" " char *a = malloc(10);\n"