commit | 9755364a0d9a448c57b705640b4756d566a0051e | [log] [tgz] |
---|---|---|
author | Evan Brown <ezb@google.com> | Fri Jun 14 09:39:10 2024 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Fri Jun 14 09:40:06 2024 -0700 |
tree | 9936584a3d03fae88864b4148d38807bd7c50a31 | |
parent | 33dca3ef75533ba0cc9b099b17409bb354344497 [diff] |
Increase slop time on MSVC in PerThreadSemTest.Timeouts again due to continued flakiness. PiperOrigin-RevId: 643372086 Change-Id: I8fb2acc0e5ad35113e865bf008a531f3442a9295
diff --git a/absl/synchronization/internal/per_thread_sem_test.cc b/absl/synchronization/internal/per_thread_sem_test.cc index 2eb8067..e3cf41d 100644 --- a/absl/synchronization/internal/per_thread_sem_test.cc +++ b/absl/synchronization/internal/per_thread_sem_test.cc
@@ -162,7 +162,7 @@ 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