Browse Source

Fix SleepFor(...) helper when a monotonic clock is not available.

Single threaded builds often don't provide a monotonic clock, so we can't
always provide a monotonic SleepFor(...) implementation. Hopefully this
won't cause the builds to hang.


git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@273091 91177308-0d34-0410-b5e6-96231b3b80d8
Eric Fiselier 9 years ago
parent
commit
29c26b91df
1 changed files with 7 additions and 3 deletions
  1. 7 3
      test/support/filesystem_test_helper.hpp

+ 7 - 3
test/support/filesystem_test_helper.hpp

@@ -388,9 +388,13 @@ inline std::error_code GetTestEC() {
 // available in single-threaded mode.
 void SleepFor(std::chrono::seconds dur) {
     using namespace std::chrono;
-    const auto curr_time = steady_clock::now();
-    auto wake_time = curr_time + dur;
-    while (steady_clock::now() < wake_time)
+#if defined(_LIBCPP_HAS_NO_MONOTONIC_CLOCK)
+    using Clock = system_clock;
+#else
+    using Clock = steady_clock;
+#endif
+    const auto wake_time = Clock::now() + dur;
+    while (Clock::now() < wake_time)
         ;
 }