Skip to content

Commit f545bb4

Browse files
committed
loosen timer test tolerance
1 parent 40c48ef commit f545bb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IntelPresentMon/UnitTests/Timing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ namespace UtilityTests
9494
Sleep(16);
9595
waiter.Wait();
9696
const auto dur = std::chrono::duration<double>(Timer::now() - start).count();
97-
AssertWithinTolerance(dur, waitInterval * (i + 1), 0.000'01);
97+
AssertWithinTolerance(dur, waitInterval * (i + 1), 0.000'02);
9898
}
9999
}
100100
// TODO: interval waiter test with late Wait() call

0 commit comments

Comments
 (0)