From 992326b1c88d5bc0884406863c43f68e8ecabcf5 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 2 Jun 2023 02:04:46 +0300 Subject: [PATCH] Decrease loop count of sp_thread_sleep_test --- test/sp_thread_sleep_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sp_thread_sleep_test.cpp b/test/sp_thread_sleep_test.cpp index 2ee84ed..ed1db37 100644 --- a/test/sp_thread_sleep_test.cpp +++ b/test/sp_thread_sleep_test.cpp @@ -8,7 +8,7 @@ int main() { - for( int i = 0; i < 1000; ++i ) + for( int i = 0; i < 100; ++i ) { boost::core::sp_thread_sleep(); }