diff options
-rw-r--r-- | test/semaphoretest.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/semaphoretest.cc b/test/semaphoretest.cc index 9c9d116..3211930 100644 --- a/test/semaphoretest.cc +++ b/test/semaphoretest.cc @@ -64,8 +64,6 @@ public: bool res = sem.wait(std::chrono::milliseconds(1000)); CPPUNIT_ASSERT(!res); // false means timeout auto stop = std::chrono::steady_clock::now(); - auto d = dist((stop - start), std::chrono::milliseconds(1000)); - printf("%lld\n", d.count()); // Allow +/-1ms skew CPPUNIT_ASSERT(dist((stop - start), std::chrono::milliseconds(1000)) |