diff options
| author | Hennadii Stepanov <[email protected]> | 2020-06-20 23:00:52 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2020-08-02 16:42:39 +0300 |
| commit | 63e9e40b73507b0c9361fc8728d4e97fd72c9ec9 (patch) | |
| tree | 681300eb961c2cbfb2a82a8d026ad5c04e07f792 /src/test/sync_tests.cpp | |
| parent | test: Repeat deadlock tests (diff) | |
| download | discoin-63e9e40b73507b0c9361fc8728d4e97fd72c9ec9.tar.xz discoin-63e9e40b73507b0c9361fc8728d4e97fd72c9ec9.zip | |
test: Add LockStackEmpty()
Diffstat (limited to 'src/test/sync_tests.cpp')
| -rw-r--r-- | src/test/sync_tests.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/sync_tests.cpp b/src/test/sync_tests.cpp index 36f9c9bce..19029ebd3 100644 --- a/src/test/sync_tests.cpp +++ b/src/test/sync_tests.cpp @@ -14,6 +14,7 @@ void TestPotentialDeadLockDetected(MutexType& mutex1, MutexType& mutex2) { LOCK2(mutex1, mutex2); } + BOOST_CHECK(LockStackEmpty()); bool error_thrown = false; try { LOCK2(mutex2, mutex1); @@ -21,6 +22,7 @@ void TestPotentialDeadLockDetected(MutexType& mutex1, MutexType& mutex2) BOOST_CHECK_EQUAL(e.what(), "potential deadlock detected: mutex1 -> mutex2 -> mutex1"); error_thrown = true; } + BOOST_CHECK(LockStackEmpty()); #ifdef DEBUG_LOCKORDER BOOST_CHECK(error_thrown); #else |