diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-02-26 01:23:41 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-05-07 19:29:20 +0300 |
commit | e18a0e97a1b71d0c627b809d5d2f6bcb2dba41d7 (patch) | |
tree | c3df615b701fd6d218b7bb0a1b053a518a8a51cc /gnu/packages/gtk.scm | |
parent | e32e9aa251930114f4f2415cde78c898be6dc5fa (diff) |
gnu: gdk-pixbuf: Adjust skipped failing tests.
* gnu/packages/gtk.scm (gdk-pixbuf)[arguments]: In 'disable-failing-tests
phase skip a different test.
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)) |