Unverified Commit 14c62b15 authored by Yureka's avatar Yureka Committed by GitHub
Browse files

lib2geom: skip failing test on musl (#266553)

parent 543a969c
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -70,7 +70,13 @@ stdenv.mkDerivation rec {
        # Broken on all platforms, test just accidentally passes on some.
        # https://gitlab.com/inkscape/lib2geom/-/issues/63
        "elliptical-arc-test"
      ];
      ]
      ++ lib.optionals stdenv.hostPlatform.isMusl [
        # Fails due to rounding differences
        # https://gitlab.com/inkscape/lib2geom/-/issues/70
        "circle-test"
      ]
      ;
  in ''
    runHook preCheck
    ctest --output-on-failure -E '^${lib.concatStringsSep "|" disabledTests}$'