diff options
author | Greg Hogan <code@greghogan.com> | 2024-10-22 18:09:08 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 14:45:07 +0000 |
commit | d2ee8bc65d8cc0f0ce56a83583793bd4064dc630 (patch) | |
tree | 407da3e560b563d8ca6802e372779093fa77f2c7 | |
parent | 6e694a15aed1ae5561029aa3ea23b2c609733b7f (diff) |
gnu: inkscape/pinned: Fix tests.
* gnu/packages/inkscape.scm (inkscape/pinned)[arguments]<#:phases>:
Fix argument to test command in 'check.
Change-Id: Ie89a7026f63256afabba038e0fc30e6ab0d8f3a6
-rw-r--r-- | gnu/packages/inkscape.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm index c75c4822b3..33a57354dc 100644 --- a/gnu/packages/inkscape.scm +++ b/gnu/packages/inkscape.scm @@ -260,7 +260,7 @@ endif()~%~%" '())))) (invoke "make" "-j" job-count "tests") (invoke "ctest" "-j" job-count - "--output-on-error" + "--output-on-failure" "-E" (string-append "(" (string-join skipped-tests "|") ")")))))) (add-after 'install 'glib-or-gtk-compile-schemas |