mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
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:
commit
b6243248a9
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue