aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2017-06-07 16:35:39 +0200
committerpracticalswift <[email protected]>2017-06-07 20:38:03 +0200
commit227ae9b34dce632e42ca9f22139e6efad0485df1 (patch)
tree482c1e333914d4d1d29f3c6dfa6084cf0448e2b0 /src/test
parentMerge #10201: pass Consensus::Params& to functions in validation.cpp and make... (diff)
downloaddiscoin-227ae9b34dce632e42ca9f22139e6efad0485df1.tar.xz
discoin-227ae9b34dce632e42ca9f22139e6efad0485df1.zip
[tests] Use FastRandomContext instead of boost::random::{mt19937,uniform_int_distribution}
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scheduler_tests.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/test/scheduler_tests.cpp b/src/test/scheduler_tests.cpp
index e4ddf9d61..1de865776 100644
--- a/src/test/scheduler_tests.cpp
+++ b/src/test/scheduler_tests.cpp
@@ -8,8 +8,6 @@
#include "test/test_bitcoin.h"
#include <boost/bind.hpp>
-#include <boost/random/mersenne_twister.hpp>
-#include <boost/random/uniform_int_distribution.hpp>
#include <boost/thread.hpp>
#include <boost/test/unit_test.hpp>
@@ -56,10 +54,10 @@ BOOST_AUTO_TEST_CASE(manythreads)
boost::mutex counterMutex[10];
int counter[10] = { 0 };
- boost::random::mt19937 rng(42);
- boost::random::uniform_int_distribution<> zeroToNine(0, 9);
- boost::random::uniform_int_distribution<> randomMsec(-11, 1000);
- boost::random::uniform_int_distribution<> randomDelta(-1000, 1000);
+ FastRandomContext rng(42);
+ auto zeroToNine = [](FastRandomContext& rc) -> int { return rc.randrange(10); }; // [0, 9]
+ auto randomMsec = [](FastRandomContext& rc) -> int { return -11 + rc.randrange(1012); }; // [-11, 1000]
+ auto randomDelta = [](FastRandomContext& rc) -> int { return -1000 + rc.randrange(2001); }; // [-1000, 1000]
boost::chrono::system_clock::time_point start = boost::chrono::system_clock::now();
boost::chrono::system_clock::time_point now = start;