guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates-frozen updated: gnu: appstream-glib: Fix failing tes


From: guix-commits
Subject: branch core-updates-frozen updated: gnu: appstream-glib: Fix failing tests.
Date: Fri, 20 Aug 2021 15:06:41 -0400

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch core-updates-frozen
in repository guix.

The following commit(s) were added to refs/heads/core-updates-frozen by this 
push:
     new a24631a  gnu: appstream-glib: Fix failing tests.
a24631a is described below

commit a24631a6dfc765c1e4e3f56cca51bd12672e8726
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Fri Aug 20 15:55:26 2021 +0200

    gnu: appstream-glib: Fix failing tests.
    
    * gnu/packages/glib.scm (appstream-glib)[arguments]<#:phases>{set-home}: 
Add a
    new phase 'set-home' for tests that want to write to $HOME.
    
    Signed-off-by: Leo Famulari <leo@famulari.name>
---
 gnu/packages/glib.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index a9c7f4a..f032849 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -1097,7 +1097,11 @@ Some codes examples can be find at:
            (lambda _
              (substitute* "libappstream-glib/as-self-test.c"
                (("g_test_add_func.*as_test_store_local_appdata_func);") ""))
-             #t)))))
+             #t))
+         (add-before 'check 'set-home
+           (lambda _
+             ;; Some tests want write access there.
+             (setenv "HOME" "/tmp"))))))
     (home-page "https://github.com/hughsie/appstream-glib";)
     (synopsis "Library for reading and writing AppStream metadata")
     (description "This library provides objects and helper methods to help



reply via email to

[Prev in Thread] Current Thread [Next in Thread]