diff options
author | Evan Brown <ezb@google.com> | 2024-06-14 09:39:10 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-06-14 09:40:06 -0700 |
commit | 9755364a0d9a448c57b705640b4756d566a0051e (patch) | |
tree | 9936584a3d03fae88864b4148d38807bd7c50a31 /absl | |
parent | 33dca3ef75533ba0cc9b099b17409bb354344497 (diff) |
Increase slop time on MSVC in PerThreadSemTest.Timeouts again due to continued flakiness.
PiperOrigin-RevId: 643372086
Change-Id: I8fb2acc0e5ad35113e865bf008a531f3442a9295
Diffstat (limited to 'absl')
-rw-r--r-- | absl/synchronization/internal/per_thread_sem_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/synchronization/internal/per_thread_sem_test.cc b/absl/synchronization/internal/per_thread_sem_test.cc index 2eb80679..e3cf41d7 100644 --- a/absl/synchronization/internal/per_thread_sem_test.cc +++ b/absl/synchronization/internal/per_thread_sem_test.cc @@ -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 |