|
From: Paul F. <pa...@so...> - 2022-04-27 19:14:53
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=184e3ba052a6532db2af662b363103f562b01182 commit 184e3ba052a6532db2af662b363103f562b01182 Author: Paul Floyd <pj...@wa...> Date: Wed Apr 27 21:13:45 2022 +0200 Bug 453055 shared_timed_mutex drd test fails with "Lock shared failed" message Patch submited by Jesus Checa jc...@re... Diff: --- NEWS | 1 + drd/tests/shared_timed_mutex.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS b/NEWS index a42ec24f25..05eb34d1f6 100644 --- a/NEWS +++ b/NEWS @@ -37,6 +37,7 @@ are not entered into bugzilla tend to get forgotten about or ignored. 452274 memcheck crashes with Assertion 'sci->status.what == SsIdle' failed 452779 Valgrind fails to build on FreeBSD 13.0 with llvm-devel (15.0.0) +453055 shared_timed_mutex drd test fails with "Lock shared failed" message To see details of a given bug, visit https://bugs.kde.org/show_bug.cgi?id=XXXXXX diff --git a/drd/tests/shared_timed_mutex.cpp b/drd/tests/shared_timed_mutex.cpp index 9741169672..dfd97a4b81 100644 --- a/drd/tests/shared_timed_mutex.cpp +++ b/drd/tests/shared_timed_mutex.cpp @@ -43,6 +43,7 @@ void g() if (test_mutex.try_lock_shared_until(then)) { test_mutex.unlock_shared(); + break; } } if (i == 3) |