Commit fa102e72 authored by Kenton Varda's avatar Kenton Varda

Try again to fix OSX.

parent d9f844a9
...@@ -594,8 +594,9 @@ TEST(AsyncUnixTest, InterruptedTimer) { ...@@ -594,8 +594,9 @@ TEST(AsyncUnixTest, InterruptedTimer) {
constexpr auto OS_SLOWNESS_FACTOR = 1; constexpr auto OS_SLOWNESS_FACTOR = 1;
#else #else
// OSX timeslices are 10ms, so we need longer timeouts to avoid flakiness. // OSX timeslices are 10ms, so we need longer timeouts to avoid flakiness.
// In fact, even 10x doesn't make OSX happy so we're pushing it to 100x.
// To be safe we'll assume other OS's are similar. // To be safe we'll assume other OS's are similar.
constexpr auto OS_SLOWNESS_FACTOR = 10; constexpr auto OS_SLOWNESS_FACTOR = 100;
#endif #endif
// Schedule a timer event in 10ms. // Schedule a timer event in 10ms.
......
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