From eb9cc0be062c557888640a2fd8bfcee23ec2657c Mon Sep 17 00:00:00 2001 From: oxarbitrage Date: Fri, 23 Mar 2018 17:20:13 -0300 Subject: [PATCH] add note to commented test --- tests/crypto/rand_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/crypto/rand_test.cpp b/tests/crypto/rand_test.cpp index b92737f..cb3b25d 100644 --- a/tests/crypto/rand_test.cpp +++ b/tests/crypto/rand_test.cpp @@ -22,6 +22,7 @@ static void check_randomness( const char* buffer, size_t len ) { double variance = (E - 1) * (E - 2) / (oc + zc - 1); double sigma = sqrt(variance); + // Next test was removed as it will not pass: //BOOST_CHECK_GT(rc, E - sigma); BOOST_CHECK_LT(rc, E + sigma); }