diff options
| author | Hennadii Stepanov <[email protected]> | 2020-06-22 18:21:12 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2020-06-22 18:24:29 +0300 |
| commit | bbe9cf4fe4ff9a8d1ea557fb763c76100db07679 (patch) | |
| tree | 79a3d276e11e188e24149ec1b08a9383cb951ea8 /src/test/sync_tests.cpp | |
| parent | Fix mistakenly swapped "previous" and "current" lock orders (diff) | |
| download | discoin-bbe9cf4fe4ff9a8d1ea557fb763c76100db07679.tar.xz discoin-bbe9cf4fe4ff9a8d1ea557fb763c76100db07679.zip | |
test: Improve "potential deadlock detected" exception message
Diffstat (limited to 'src/test/sync_tests.cpp')
| -rw-r--r-- | src/test/sync_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/sync_tests.cpp b/src/test/sync_tests.cpp index 5c6c2ee38..3ea8714f3 100644 --- a/src/test/sync_tests.cpp +++ b/src/test/sync_tests.cpp @@ -18,7 +18,7 @@ void TestPotentialDeadLockDetected(MutexType& mutex1, MutexType& mutex2) try { LOCK2(mutex2, mutex1); } catch (const std::logic_error& e) { - BOOST_CHECK_EQUAL(e.what(), "potential deadlock detected"); + BOOST_CHECK_EQUAL(e.what(), "potential deadlock detected: mutex1 -> mutex2 -> mutex1"); error_thrown = true; } #ifdef DEBUG_LOCKORDER |