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 @@ -61,23 +61,26 @@ stdenv.mkDerivation (finalAttrs: {
6161 checkPhase =
6262 let
6363 disabledTests =
64- lib . optionals stdenv . hostPlatform . isAarch64 [
65- # Broken on all platforms, test just accidentally passes on some.
66- # https://gitlab.com/inkscape/lib2geom/-/issues/63
67- "elliptical-arc-test"
68- ]
69- ++ lib . optionals stdenv . hostPlatform . isMusl [
64+ lib . optionals stdenv . hostPlatform . isMusl [
7065 # Fails due to rounding differences
7166 # https://gitlab.com/inkscape/lib2geom/-/issues/70
7267 "circle-test"
7368 ]
7469 ++ lib . optionals ( stdenv . hostPlatform . system != "x86_64-linux" ) [
70+ # Broken on all platforms, test just accidentally passes on some.
71+ # https://gitlab.com/inkscape/lib2geom/-/issues/63
72+ "elliptical-arc-test"
73+
7574 # https://gitlab.com/inkscape/lib2geom/-/issues/69
7675 "polynomial-test"
7776
7877 # https://gitlab.com/inkscape/lib2geom/-/issues/75
7978 "line-test"
8079
80+ # Failure observed on i686
81+ "angle-test"
82+ "self-intersections-test"
83+
8184 # Failure observed on aarch64-darwin
8285 "bezier-test"
8386 "ellipse-test"
You can’t perform that action at this time.
0 commit comments