diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2024-03-27 00:45:59 -0400 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2024-03-31 20:47:20 -0400 |
commit | 5639756aa0897daca65bd160791aeb3721e6ccdc (patch) | |
tree | aa2080694f58e96a6b7ee11a163151971f7b2af6 /gnu/packages | |
parent | f7c259b2659cbd752ce5e1bcd2c2d66188295967 (diff) | |
download | guix-5639756aa0897daca65bd160791aeb3721e6ccdc.tar guix-5639756aa0897daca65bd160791aeb3721e6ccdc.tar.gz |
gnu: librsvg-2.40: Skip tests that fail with cairo 1.18.0.
* gnu/packages/gnome.scm (librsvg-2.40)[arguments]: Skip two tests which fail
after cairo was updated to version 1.18.0.
Change-Id: If3867a9fdee6481da819954d77341f411e85e78b
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 42f758f8d8..5277476338 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3728,12 +3728,15 @@ diagrams.") "svg1.1/masking-mask-01-b.svg" ;; This test fails on aarch64: "bugs/777834-empty-text-children.svg" - ;; These two tests fail due to slightly different ;; text rendering (different kerning or similar), ;; nothing alarming. "bugs/340047.svg" - "bugs/749415.svg")))))))) + "bugs/749415.svg" + ;; These two tests fail with the update to cairo + ;; version 1.18.0. + "bugs/587721-text-transform.svg" + "svg1.1/masking-path-03-b.svg")))))))) (native-inputs (list pkg-config `(,glib "bin") ; glib-mkenums, etc. |