mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-14 04:00:41 +02:00
Silence "Test case [...] did not check any assertions" warnings when running "test_bitcoin --log_level=test_suite"
This commit is contained in:
parent
5fd73c8694
commit
0aef39d067
@ -386,6 +386,7 @@ BOOST_AUTO_TEST_CASE(TransactionsRequestDeserializationOverflowTest) {
|
||||
BOOST_CHECK(0);
|
||||
} catch(std::ios_base::failure &) {
|
||||
// deserialize should fail
|
||||
BOOST_CHECK(true); // Needed to suppress "Test case [...] did not check any assertions"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -36,8 +36,10 @@ BOOST_AUTO_TEST_CASE(util_criticalsection)
|
||||
|
||||
do {
|
||||
TRY_LOCK(cs, lockTest);
|
||||
if (lockTest)
|
||||
if (lockTest) {
|
||||
BOOST_CHECK(true); // Needed to suppress "Test case [...] did not check any assertions"
|
||||
break;
|
||||
}
|
||||
|
||||
BOOST_ERROR("break was swallowed!");
|
||||
} while(0);
|
||||
|
Loading…
Reference in New Issue
Block a user