From f81cb4f24bfb3b2df40063263ffc3b64b5d73c2b Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sun, 16 Jun 2019 12:17:13 +0000 Subject: [PATCH] unit_tests: add more leeway to the "same distribution" check This is an inherently probabilistic check, which occasionally fails for a matching distribution --- tests/unit_tests/output_selection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit_tests/output_selection.cpp b/tests/unit_tests/output_selection.cpp index 235b1c809..17398f777 100644 --- a/tests/unit_tests/output_selection.cpp +++ b/tests/unit_tests/output_selection.cpp @@ -211,10 +211,10 @@ TEST(select_outputs, same_distribution) { const double diff = (double)output_norm[i] - (double)chain_norm[i]; double dev = fabs(2.0 * diff / (output_norm[i] + chain_norm[i])); - ASSERT_LT(dev, 0.1); + ASSERT_LT(dev, 0.15); avg_dev += dev; } avg_dev /= 100; MDEBUG("avg_dev: " << avg_dev); - ASSERT_LT(avg_dev, 0.015); + ASSERT_LT(avg_dev, 0.02); }