fdManagerTest: quiet spurious failure

One iteration should be enough, but not always,
and not for all targets...
This commit is contained in:
Michael Davidsaver
2025-08-07 07:16:36 -07:00
parent 187801c2e6
commit 9ce921f4fd

View File

@@ -216,7 +216,8 @@ void testOnlyTimer()
epicsTime now(epicsTime::getCurrent());
trig_timer.timer.start(trig, now+0.1);
never_timer.timer.start(never, now+9999999.0);
mgr.process(0.2);
for(unsigned i=0; i<10 && !trig.expired; i++)
mgr.process(0.2);
testOk1(trig.expired);
testOk1(!never.expired);
}