diff options
author | Efraim Flashner <[email protected]> | 2023-05-09 09:56:33 +0300 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2023-05-09 09:56:33 +0300 |
commit | 649ce7b433171a47e8a2819b849bfa88c736d0e9 (patch) | |
tree | ca4c7a4b3bfb13825737f72718e1377ee0ddbe1e /gnu/packages/gtk.scm | |
parent | 1bb29cd49c759a9af62b3d5c51ebd212bd3596c7 (diff) | |
parent | c56d57110de1412d3529940d4f856611d123da66 (diff) |
Merge branch 'rust-team'
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index dad1944b1a..ca41612e90 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -705,8 +705,10 @@ highlighting and other features typical of a source code editor.") (modify-phases %standard-phases (add-before 'configure 'disable-failing-tests (lambda _ - (substitute* "tests/meson.build" - (("\\[ 'pixbuf-fail', \\['conform', 'slow'\\], \\],") + ;; The test for the fix for issue 205 causes failures. + ;; https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/issues/215 + (substitute* "tests/pixbuf-jpeg.c" + ((".*/pixbuf/jpeg/issue205.*") "")))) ;; The slow tests take longer than the specified timeout. ,@(if (target-arm? (%current-system)) |