aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-01-02 21:00:43 +0100
committerSimon Warta <[email protected]>2017-01-02 21:00:43 +0100
commit18de2e7df2479aad8c6c94933197ccb295f0f61b (patch)
tree6b1054a95974ca7b16178f866508e735eebc2963 /src
parent4b54b03df9103909e45873d93dd081d202e00c43 (diff)
Increase value of ITERATIONS_PER_POSSIBLE_VALUE to 750
to avoid test failures
Diffstat (limited to 'src')
-rw-r--r--src/tests/test_bigint.cpp3
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 };