From 27bd9728327dd434a8373605c88a87c2b07beeaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Sat, 21 Oct 2023 09:15:22 +0200 Subject: [PATCH] test/CMakeLists.txt: updated the test fixture costs (#5565) --- test/CMakeLists.txt | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 79c267628..e99afca4e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -168,10 +168,26 @@ if (BUILD_TESTS) # Set cost of the more expensive tests to help improve parallel scheduling # of tests - fixture_cost(TestIO 20) - fixture_cost(cfg-std_c 8) - fixture_cost(TestThreadExecutor 5) - fixture_cost(TestLeakAutoVarRecursiveCountLimit 4) - fixture_cost(TestTokenizer 4) + # + # To collect data to update this list remove "/Testing/Temporary/CTestCostData.txt", + # disable the fixture_cost() statements below and run a Debug build with "ctest -j1" several times. + # Afterwards run it with "ctest -j11" and immediately cancel the run and update the list accordingly to the + # first eleven tests chosen. + # + # NOTE: The TestProcessExecutor* tests are not the slowest but they invoke processes which max out the system + # and negatively impact the run-time of the other tests + if (TRUE) + fixture_cost(TestProcessExecutorFiles 1.10) + fixture_cost(TestProcessExecutorFS 1.09) + fixture_cost(cfg-std_c 1.08) + fixture_cost(TestIO 1.07) + fixture_cost(cfg-std_cpp 1.06) + fixture_cost(TestCondition 1.05) + fixture_cost(TestValueFlow 1.04) + fixture_cost(TestLeakAutoVarRecursiveCountLimit 1.03) + fixture_cost(TestBufferOverrun 1.02) + fixture_cost(TestClass 1.01) + fixture_cost(TestStl 1.00) + endif() endif() endif()