From 6e0e1ded0e2767e8ec9af10698e1ca1b49b8988d Mon Sep 17 00:00:00 2001
From: Florian Uhlig <f.uhlig@gsi.de>
Date: Wed, 18 Dec 2024 17:45:37 +0100
Subject: [PATCH] Increase test time

The current test time was slightly on the low side for run4. When running the
test locally on an empty node the execution time was below the maximum test
time. When running the test in parallel with other tests the test hits the
time limit. Fixing this by increasing the test time.
---
 macro/C2F/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/macro/C2F/CMakeLists.txt b/macro/C2F/CMakeLists.txt
index f60495ae2d..c6fce7cbac 100644
--- a/macro/C2F/CMakeLists.txt
+++ b/macro/C2F/CMakeLists.txt
@@ -51,7 +51,7 @@ ForEach(setup IN LISTS cbm_setup)
         FIXTURES_SETUP fixture_c2f_reco_event_${setup}
     )
 
-    math(EXPR timeOutTime "${NumEvents} * 30")
+    math(EXPR timeOutTime "${NumEvents} * 40")
     # --- Reconstruction run, event-by-event
     Set(testname c2f_reco_event_${setup})
     Add_Test(${testname} ${MACRO_DIR}/run_reco_event.sh ${NumEvents} \"data/${setup}_test\" \"${setup}\")
-- 
GitLab