]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Reduce required pop rate
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 17 Jun 2021 19:33:00 +0000 (14:33 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 17 Jun 2021 19:33:00 +0000 (14:33 -0500)
src/lib/util/strerror_tests.c

index dd190e723c2cb417c49667a5fcfead65efed2c7b..371acb2ed37aac034ce43524951f098e0beeda12 100644 (file)
@@ -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);
 }