Commit 0697762c by Tom Rybka Committed by Copybara-Service

Increase the timeout of Windows for the kernel timeout tests.

Windows tests often run in Emulation, and even with KVM we can still timeout.

PiperOrigin-RevId: 517192968
Change-Id: I3b4e435f8ac8ad1e7eab6f043c051fa75efed64b
parent 3853b482
...@@ -26,7 +26,9 @@ namespace { ...@@ -26,7 +26,9 @@ namespace {
#if defined(ABSL_HAVE_ADDRESS_SANITIZER) || \ #if defined(ABSL_HAVE_ADDRESS_SANITIZER) || \
defined(ABSL_HAVE_MEMORY_SANITIZER) || \ defined(ABSL_HAVE_MEMORY_SANITIZER) || \
defined(ABSL_HAVE_THREAD_SANITIZER) || defined(__ANDROID__) defined(ABSL_HAVE_THREAD_SANITIZER) || \
defined(__ANDROID__) || \
defined(_WIN32) || defined(_WIN64)
constexpr absl::Duration kTimingBound = absl::Milliseconds(5); constexpr absl::Duration kTimingBound = absl::Milliseconds(5);
#else #else
constexpr absl::Duration kTimingBound = absl::Microseconds(250); constexpr absl::Duration kTimingBound = absl::Microseconds(250);
......
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