diff options
author | Simon Warta <[email protected]> | 2017-01-02 21:00:43 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-01-02 21:00:43 +0100 |
commit | 18de2e7df2479aad8c6c94933197ccb295f0f61b (patch) | |
tree | 6b1054a95974ca7b16178f866508e735eebc2963 /src/tests | |
parent | 4b54b03df9103909e45873d93dd081d202e00c43 (diff) |
Increase value of ITERATIONS_PER_POSSIBLE_VALUE to 750
to avoid test failures
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_bigint.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/test_bigint.cpp b/src/tests/test_bigint.cpp index e23f50055..901cd8039 100644 --- a/src/tests/test_bigint.cpp +++ b/src/tests/test_bigint.cpp @@ -133,7 +133,8 @@ class BigInt_Unit_Tests : public Test result.start_timer(); - const size_t ITERATIONS_PER_POSSIBLE_VALUE = 500; + // A value of 500 caused a non-negligible amount of test failures + const size_t ITERATIONS_PER_POSSIBLE_VALUE = 750; std::vector<size_t> min_ranges{ 0 }; std::vector<size_t> max_ranges{ 10 }; |