From: Arran Cudbard-Bell Date: Thu, 17 Jun 2021 19:33:00 +0000 (-0500) Subject: Reduce required pop rate X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57b3c3fd01b14b01e0e41b595e961803015baf44;p=thirdparty%2Ffreeradius-server.git Reduce required pop rate --- diff --git a/src/lib/util/strerror_tests.c b/src/lib/util/strerror_tests.c index dd190e723c2..371acb2ed37 100644 --- a/src/lib/util/strerror_tests.c +++ b/src/lib/util/strerror_tests.c @@ -221,8 +221,8 @@ static void strerror_const_benchmark(void) rate = (uint64_t)((float)NSEC / ((stop - start) / 100000)); printf("const pop rate %" PRIu64 "\n", rate); - /* Normally well above 10M, but 8M observed in CI */ - TEST_CHECK(rate > 8000000); + /* Normally well above 10M, but 6M observed in CI */ + TEST_CHECK(rate > 6000000); }