Merge pull request #814 from libexpat/fix-make-check-for-arm64-freebsd

tests: Fix `CLOCKS_PER_SEC` guard for arm64 FreeBSD reality
This commit is contained in:
Sebastian Pipping 2024-02-06 00:00:00 +01:00 committed by GitHub
commit b6243248a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5233,12 +5233,13 @@ START_TEST(test_big_tokens_take_linear_time) {
if (! g_reparseDeferralEnabledDefault) {
return; // heuristic is disabled; we would get O(n^2) and fail.
}
#if defined(_WIN32)
#if ! defined(__linux__)
if (CLOCKS_PER_SEC < 100000) {
// Skip this test if clock() doesn't have reasonably good resolution.
// This workaround is only applied to Windows targets, since XSI requires
// the value to be 1 000 000 (10x the condition here), and we want to be
// very sure that at least one platform in CI can catch regressions.
// This workaround is primarily targeting Windows and FreeBSD, since
// XSI requires the value to be 1.000.000 (10x the condition here), and
// we want to be very sure that at least one platform in CI can catch
// regressions (through a failing test).
return;
}
#endif