From 7fd39c061a5216c86fc3beefa48f9f55cad6b91b Mon Sep 17 00:00:00 2001 From: Michael Huth Date: Thu, 21 Mar 2024 18:05:15 +0100 Subject: [PATCH] Tests: Increase timeout for acquisition to 20 mins The NI reliability test is running rather slow on the CI machine and exceeds 10 mins timeout for the acquisition. This results in a fail. Fix: Increase timeout for acquisition task. --- Packages/tests/UTF_HardwareHelperFunctions.ipf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/tests/UTF_HardwareHelperFunctions.ipf b/Packages/tests/UTF_HardwareHelperFunctions.ipf index 244f381eab..26bdff9164 100644 --- a/Packages/tests/UTF_HardwareHelperFunctions.ipf +++ b/Packages/tests/UTF_HardwareHelperFunctions.ipf @@ -342,7 +342,7 @@ Function RegisterReentryFunction(string testcase) if(FuncRefIsAssigned(FuncRefInfo(reentryFuncPlain)) || FuncRefIsAssigned(FuncRefInfo(reentryFuncMDStr)) || FuncRefIsAssigned(FuncRefInfo(reentryFuncRefWave)) || FuncRefIsAssigned(FuncRefInfo(reentryFuncMDD))) CtrlNamedBackGround DAQWatchdog, start, period=120, proc=WaitUntilDAQDone_IGNORE CtrlNamedBackGround TPWatchdog, start, period=120, proc=WaitUntilTPDone_IGNORE - RegisterUTFMonitor(TASKNAMES + "DAQWatchdog;TPWatchdog", BACKGROUNDMONMODE_AND, reentryFuncName, timeout = 600, failOnTimeout = 1) + RegisterUTFMonitor(TASKNAMES + "DAQWatchdog;TPWatchdog", BACKGROUNDMONMODE_AND, reentryFuncName, timeout = 1200, failOnTimeout = 1) endif End