From fcb3f0e82a06c40ae30670a51fb87b90ee815158 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 26 Jun 2023 02:42:12 +0300 Subject: [PATCH] Decrease iterations in rw_spinlock_test8 to avoid timeouts --- test/cfoa/rw_spinlock_test8.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cfoa/rw_spinlock_test8.cpp b/test/cfoa/rw_spinlock_test8.cpp index 7a604265..aed3995c 100644 --- a/test/cfoa/rw_spinlock_test8.cpp +++ b/test/cfoa/rw_spinlock_test8.cpp @@ -43,7 +43,7 @@ void f( int k, int m, int n ) int main() { - int const N = 1000; // total iterations + int const N = 100; // total iterations int const M = 4; // threads std::thread th[ M ];