mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 00:07:38 +00:00
Merge pull request #6856
db70af1
Unit Tests: Remove block reward upper bound size checks (TheCharlatan)
This commit is contained in:
commit
450f1325ab
1 changed files with 0 additions and 18 deletions
|
@ -138,24 +138,6 @@ namespace
|
|||
ASSERT_FALSE(m_block_not_too_big);
|
||||
}
|
||||
|
||||
#ifdef __x86_64__ // For 64-bit systems only, because block size is limited to size_t.
|
||||
TEST_F(block_reward_and_current_block_weight, fails_on_huge_median_size)
|
||||
{
|
||||
#if !defined(NDEBUG)
|
||||
size_t huge_size = std::numeric_limits<uint32_t>::max() + UINT64_C(2);
|
||||
ASSERT_DEATH(do_test(huge_size, huge_size + 1), "");
|
||||
#endif
|
||||
}
|
||||
|
||||
TEST_F(block_reward_and_current_block_weight, fails_on_huge_block_weight)
|
||||
{
|
||||
#if !defined(NDEBUG)
|
||||
size_t huge_size = std::numeric_limits<uint32_t>::max() + UINT64_C(2);
|
||||
ASSERT_DEATH(do_test(huge_size - 2, huge_size), "");
|
||||
#endif
|
||||
}
|
||||
#endif // __x86_64__
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------------
|
||||
class block_reward_and_last_block_weights : public ::testing::Test
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue