Skip to content

Commit

Permalink
lib2geom: Disable tests on i686 (#365815)
Browse files Browse the repository at this point in the history
  • Loading branch information
misuzu authored Jan 14, 2025
2 parents 5d19bc4 + a156555 commit be96678
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pkgs/by-name/li/lib2geom/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,26 @@ stdenv.mkDerivation (finalAttrs: {
checkPhase =
let
disabledTests =
lib.optionals stdenv.hostPlatform.isAarch64 [
# 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 [
lib.optionals stdenv.hostPlatform.isMusl [
# Fails due to rounding differences
# https://gitlab.com/inkscape/lib2geom/-/issues/70
"circle-test"
]
++ lib.optionals (stdenv.hostPlatform.system != "x86_64-linux") [
# Broken on all platforms, test just accidentally passes on some.
# https://gitlab.com/inkscape/lib2geom/-/issues/63
"elliptical-arc-test"

# https://gitlab.com/inkscape/lib2geom/-/issues/69
"polynomial-test"

# https://gitlab.com/inkscape/lib2geom/-/issues/75
"line-test"

# Failure observed on i686
"angle-test"
"self-intersections-test"

# Failure observed on aarch64-darwin
"bezier-test"
"ellipse-test"
Expand Down

0 comments on commit be96678

Please sign in to comment.