Commit 9755364a by Evan Brown Committed by Copybara-Service

Increase slop time on MSVC in PerThreadSemTest.Timeouts again due to continued flakiness.

PiperOrigin-RevId: 643372086
Change-Id: I8fb2acc0e5ad35113e865bf008a531f3442a9295
parent 33dca3ef
......@@ -162,7 +162,7 @@ TEST_F(PerThreadSemTest, Timeouts) {
absl::Duration slop = absl::Milliseconds(1);
#ifdef _MSC_VER
// Use higher slop on MSVC due to flaky test failures.
slop = absl::Milliseconds(8);
slop = absl::Milliseconds(16);
#endif
EXPECT_LE(delay - slop, elapsed)
<< "Wait returned " << delay - elapsed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment