guix-commits
[Top][All Lists]
Advanced

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

44/60: gnu: telepathy-glib: Disable failing tests.


From: guix-commits
Subject: 44/60: gnu: telepathy-glib: Disable failing tests.
Date: Sat, 25 Jan 2020 14:47:15 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.

commit 9fcffffd3b7cf4e670ad896ddd18edcef19b4fc7
Author: Kei Kebreau <address@hidden>
AuthorDate: Sat Dec 21 23:19:13 2019 -0500

    gnu: telepathy-glib: Disable failing tests.
    
    * gnu/packages/glib.scm (telepathy-glib)[arguments]: Add phase to disable
    failing tests.
---
 gnu/packages/glib.scm | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index de0cf19..181c62f 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -828,7 +828,18 @@ up the Gnome environment, and are used in many unrelated 
projects.")
        ;;
        ;;   EOFError: EOF read where object expected
        ;;   make[2]: *** [Makefile:1906: 
_gen/register-dbus-glib-marshallers-body.h] Error 1
-       #:parallel-build? #f))
+       #:parallel-build? #f
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'disable-failing-tests
+           (lambda _
+             ;; None of the tests below are able to find the org.gtk.vfs.Daemon
+             ;; service file provided by gvfs.
+             (substitute* "tests/dbus/Makefile.in"
+               (("test-contacts\\$\\(EXEEXT\\)") "")
+               (("test-file-transfer-channel\\$\\(EXEEXT\\)") "")
+               (("test-stream-tube\\$\\(EXEEXT\\)") ""))
+             #t)))))
     (native-inputs
      `(("glib" ,glib "bin") ; uses glib-mkenums
        ("gobject-introspection" ,gobject-introspection)



reply via email to

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