diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-10 15:14:12 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-10 15:14:12 +0200 |
commit | baa6d9afbc0c59322c660cfc865045d90749fb76 (patch) | |
tree | 1a0f94749880303621716b55bd15889e657c8de8 | |
parent | Merge pull request #1049 (diff) | |
parent | tests: block reward: disable 64-bit-only tests on 32-bit systems (diff) | |
download | monero-baa6d9afbc0c59322c660cfc865045d90749fb76.tar.xz |
Merge pull request #1050
f5d03bb tests: block reward: disable 64-bit-only tests on 32-bit systems (redfish)
-rw-r--r-- | tests/unit_tests/block_reward.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit_tests/block_reward.cpp b/tests/unit_tests/block_reward.cpp index e16e2c3ec..5d93c3084 100644 --- a/tests/unit_tests/block_reward.cpp +++ b/tests/unit_tests/block_reward.cpp @@ -138,6 +138,7 @@ 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_size, fails_on_huge_median_size) { #if !defined(NDEBUG) @@ -153,6 +154,7 @@ namespace ASSERT_DEATH(do_test(huge_size - 2, huge_size), ""); #endif } +#endif // __x86_64__ //-------------------------------------------------------------------------------------------------------------------- class block_reward_and_last_block_sizes : public ::testing::Test |