File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -57,23 +57,26 @@ stdenv.mkDerivation rec {
5757 checkPhase =
5858 let
5959 disabledTests =
60- lib . optionals stdenv . hostPlatform . isAarch64 [
61- # Broken on all platforms, test just accidentally passes on some.
62- # https://gitlab.com/inkscape/lib2geom/-/issues/63
63- "elliptical-arc-test"
64- ]
65- ++ lib . optionals stdenv . hostPlatform . isMusl [
60+ lib . optionals stdenv . hostPlatform . isMusl [
6661 # Fails due to rounding differences
6762 # https://gitlab.com/inkscape/lib2geom/-/issues/70
6863 "circle-test"
6964 ]
7065 ++ lib . optionals ( stdenv . hostPlatform . system != "x86_64-linux" ) [
66+ # Broken on all platforms, test just accidentally passes on some.
67+ # https://gitlab.com/inkscape/lib2geom/-/issues/63
68+ "elliptical-arc-test"
69+
7170 # https://gitlab.com/inkscape/lib2geom/-/issues/69
7271 "polynomial-test"
7372
7473 # https://gitlab.com/inkscape/lib2geom/-/issues/75
7574 "line-test"
7675
76+ # Failure observed on i686
77+ "angle-test"
78+ "self-intersections-test"
79+
7780 # Failure observed on aarch64-darwin
7881 "bezier-test"
7982 "ellipse-test"
You can’t perform that action at this time.
0 commit comments