From cf2f4ca58e951b2f2e3bff08f72b9cd782cb8683 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 19 Sep 2024 17:56:11 +0200 Subject: [PATCH] cmake: sync torture test parallelism with autotools Follow-up to 8ad3597d2dca4209fb19563b0a611a9944fa579b #14960 Closes #14969 --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 87200fa312..34de284799 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -100,5 +100,5 @@ add_runtests(test-full "-a -p -r") # ~flaky means that it ignores results of tests using the flaky keyword add_runtests(test-nonflaky "-a -p ~flaky ~timing-dependent") add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -rm -j2") -add_runtests(test-torture "-a -t") +add_runtests(test-torture "-a -t -j2") add_runtests(test-event "-a -e")