Merge pull request #314801 from imincik/geos-3.11-exclude-failing-test

geos: disable failing test in geos_3_11
This commit is contained in:
Ivan Mincik 2024-05-26 12:23:20 +00:00 committed by GitHub
commit 2f3edfc823
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,11 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ cmake ];
# https://github.com/libgeos/geos/issues/930
cmakeFlags = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
"-DCMAKE_CTEST_ARGUMENTS=--exclude-regex;unit-geom-Envelope"
];
doCheck = true;
passthru.tests = {