[test] Relaxed SmallMap benchmark test.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2022-04-21 11:48:37 +03:00
parent ebeb81adfd
commit 4ca7774992

View file

@ -78,6 +78,11 @@ UNIT_TEST(SmallSet_Smoke)
TEST_EQUAL(set.Size(), std::distance(set.begin(), set.end()), ());
}
bool BenchmarkTimeLessOrNear(uint64_t l, uint64_t r, double relativeTolerance)
{
return (l < r) || ((l - r) / static_cast<double>(l) < relativeTolerance);
}
#ifndef DEBUG
std::vector<uint32_t> GenerateIndices(uint32_t min, uint32_t max)
{
@ -131,7 +136,8 @@ UNIT_TEST(SmallMap_Benchmark1)
}
TEST_EQUAL(sum1, sum2, ());
TEST_LESS(t2, t1, ());
// At this moment, we have rare t2 > t1 on Linux CI.
TEST(BenchmarkTimeLessOrNear(t2, t1, 0.1), (t2, t1));
LOG(LINFO, ("unordered_map time =", t1, "SmallMap time =", t2));
}