[geos-commits] [SCM] GEOS branch main updated. aefb2e4be129e466e4e75ea52ad1c9b18dd06b9d
git at osgeo.org
git at osgeo.org
Thu Jan 15 16:42:11 PST 2026
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".
The branch, main has been updated
via aefb2e4be129e466e4e75ea52ad1c9b18dd06b9d (commit)
from 36d2dcfdea9cf2738dc5a233ee917417511e7945 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit aefb2e4be129e466e4e75ea52ad1c9b18dd06b9d
Author: Loïc Bartoletti <lbartoletti at users.noreply.github.com>
Date: Fri Jan 16 01:41:47 2026 +0100
test(bsd): disable FE_INVALID check on EnvelopeTest (#1375)
diff --git a/tests/unit/geom/EnvelopeTest.cpp b/tests/unit/geom/EnvelopeTest.cpp
index 1e9385e81..7c281aaee 100644
--- a/tests/unit/geom/EnvelopeTest.cpp
+++ b/tests/unit/geom/EnvelopeTest.cpp
@@ -103,8 +103,12 @@ struct test_envelope_data {
//ensure("FE_INEXACT raised", !std::fetestexcept(FE_INEXACT));
//#endif
#ifdef FE_INVALID
+ // Skip FE_INVALID check on FreeBSD and OpenBSD due to platform-specific behavior
+ // See: https://github.com/libgeos/geos/issues/1206
+#if !defined(__FreeBSD__) && !defined(__OpenBSD__)
ensure("FE_INVALID raised", !std::fetestexcept(FE_INVALID));
#endif
+#endif
#ifdef FE_OVERFLOW
ensure("FE_OVERFLOW raised", !std::fetestexcept(FE_OVERFLOW));
#endif
-----------------------------------------------------------------------
Summary of changes:
tests/unit/geom/EnvelopeTest.cpp | 4 ++++
1 file changed, 4 insertions(+)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list