This is an automated email from the git hooks/post-receive script.
z572 pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 643e7ecbe6 gnu: kmime: Disable testFancyFormat test.
643e7ecbe6 is described below
commit 643e7ecbe6079e8cc2275cc6cdf1cda04f6f818a
Author: Zheng Junjie <[email protected]>
AuthorDate: Sat Sep 7 00:28:20 2024 +0800
gnu: kmime: Disable testFancyFormat test.
Fixes <issues.guix.gnu.org/73067>
* gnu/packages/kde-pim.scm (kmime)[arguments]: Disable testFancyFormat test.
Change-Id: Id1b459832a6a0b2d7636855774a1ffaadb1aacba
---
gnu/packages/kde-pim.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index c95cf653c2..f34fe09057 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -1603,6 +1603,11 @@ kwebengineviewer.")
(add-after 'unpack 'fix-test-case
(lambda* (#:key inputs tests? #:allow-other-keys)
(when tests?
+ (with-output-to-file "autotests/BLACKLIST"
+ (lambda _
+ (for-each
+ (lambda (name) (display (string-append "[" name
"]\n*\n")))
+ (list "testFancyFormat"))))
(setenv "TZDIR" (search-input-directory
inputs "share/zoneinfo"))))))))
(home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")