Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use steady_clock in timed mutex test #4973

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions tests/std/tests/VSO_0226079_mutex/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,9 @@ class other_mutex_thread {

template <typename Func>
nanoseconds time_execution(Func&& f) {
// system_clock currently powers mutex waits, so we're using system_clock
// rather than high_resolution_clock here for consistency. This should be
// fixed with VSO-133414, VSO-166543, VSO-189735.
StephanTLavavej marked this conversation as resolved.
Show resolved Hide resolved
const auto startTime = system_clock::now();
const auto startTime = steady_clock::now();
forward<Func>(f)();
return duration_cast<nanoseconds>(system_clock::now() - startTime);
return duration_cast<nanoseconds>(steady_clock::now() - startTime);
}

template <typename Mutex>
Expand Down Expand Up @@ -298,7 +295,7 @@ struct mutex_test_fixture {
// Test acquiring locks successfully
assert(time_execution([this] { assert(mtx.try_lock_for(24h)); }) < 1h);
mtx.unlock();
assert(time_execution([this] { assert(mtx.try_lock_until(system_clock::now() + 24h)); }) < 1h);
assert(time_execution([this] { assert(mtx.try_lock_until(steady_clock::now() + 24h)); }) < 1h);
mtx.unlock();
assert(time_execution([this] {
unique_lock<Mutex> ul(mtx, defer_lock);
Expand All @@ -310,18 +307,17 @@ struct mutex_test_fixture {
}) < 1h);
assert(time_execution([this] {
unique_lock<Mutex> ul(mtx, defer_lock);
assert(ul.try_lock_until(system_clock::now() + 24h));
assert(ul.try_lock_until(steady_clock::now() + 24h));
}) < 1h);
assert(time_execution([this] {
unique_lock<Mutex> ul(mtx, system_clock::now() + 24h);
unique_lock<Mutex> ul(mtx, steady_clock::now() + 24h);
assert(ul.owns_lock());
}) < 1h);

#if 0 // TRANSITION, GH-1472
// Test failing to acquire locks on timeout
// Test failing to acquire locks on timeout
ot.lock();
assert(time_execution([this] { assert(!mtx.try_lock_for(50ms)); }) >= 50ms);
assert(time_execution([this] { assert(!mtx.try_lock_until(system_clock::now() + 50ms)); }) >= 50ms);
assert(time_execution([this] { assert(!mtx.try_lock_until(steady_clock::now() + 50ms)); }) >= 50ms);
assert(time_execution([this] {
unique_lock<Mutex> ul(mtx, defer_lock);
assert(!ul.try_lock_for(50ms));
Expand All @@ -332,14 +328,13 @@ struct mutex_test_fixture {
}) >= 50ms);
assert(time_execution([this] {
unique_lock<Mutex> ul(mtx, defer_lock);
assert(!ul.try_lock_until(system_clock::now() + 50ms));
assert(!ul.try_lock_until(steady_clock::now() + 50ms));
}) >= 50ms);
assert(time_execution([this] {
unique_lock<Mutex> ul(mtx, system_clock::now() + 50ms);
unique_lock<Mutex> ul(mtx, steady_clock::now() + 50ms);
assert(!ul.owns_lock());
}) >= 50ms);
ot.unlock();
#endif // TRANSITION, GH-1472
}

void test_recursive_lockable() {
Expand Down