From fa496a7f0bfeca0bca53f1afa49cf30aacda8fe6 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sat, 13 Oct 2018 22:35:40 -0700 Subject: [PATCH] changed test thread count --- test/capture_exception_test.cpp | 2 +- test/captured_result_test.cpp | 2 +- test/captured_result_void_test.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/capture_exception_test.cpp b/test/capture_exception_test.cpp index ef05920..1ae56c4 100644 --- a/test/capture_exception_test.cpp +++ b/test/capture_exception_test.cpp @@ -28,7 +28,7 @@ fut_info int main() { - int const thread_count = 20; + int const thread_count = 42; std::vector fut; { std::generate_n( std::inserter(fut,fut.end()), thread_count, [ ] diff --git a/test/captured_result_test.cpp b/test/captured_result_test.cpp index e2d0416..2b82f8c 100644 --- a/test/captured_result_test.cpp +++ b/test/captured_result_test.cpp @@ -27,7 +27,7 @@ fut_info int main() { - int const thread_count = 1; + int const thread_count = 42; std::vector fut; { std::generate_n( std::inserter(fut,fut.end()), thread_count, [ ] diff --git a/test/captured_result_void_test.cpp b/test/captured_result_void_test.cpp index e15c860..7ec0332 100644 --- a/test/captured_result_void_test.cpp +++ b/test/captured_result_void_test.cpp @@ -26,7 +26,7 @@ fut_info int main() { - int const thread_count = 20; + int const thread_count = 42; std::vector fut; { std::generate_n( std::inserter(fut,fut.end()), thread_count, [ ]