summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Kehayias <john.kehayias@protonmail.com>2024-03-27 00:45:59 -0400
committerJohn Kehayias <john.kehayias@protonmail.com>2024-03-31 20:47:20 -0400
commit5639756aa0897daca65bd160791aeb3721e6ccdc (patch)
treeaa2080694f58e96a6b7ee11a163151971f7b2af6
parentf7c259b2659cbd752ce5e1bcd2c2d66188295967 (diff)
downloadguix-patches-5639756aa0897daca65bd160791aeb3721e6ccdc.tar
guix-patches-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
-rw-r--r--gnu/packages/gnome.scm7
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.