[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/56: gnu: gtkmm: Run Xvfb for tests.
From: |
??? |
Subject: |
06/56: gnu: gtkmm: Run Xvfb for tests. |
Date: |
Mon, 02 May 2016 13:38:29 +0000 |
iyzsong pushed a commit to branch gnome-updates
in repository guix.
commit 37d1967cc425e274a181509e2e9caa43ca5310de
Author: Ludovic Courtès <address@hidden>
Date: Wed Apr 27 18:17:25 2016 +0200
gnu: gtkmm: Run Xvfb for tests.
* gnu/packages/gtk.scm (gtkmm)[arguments]: New field.
---
gnu/packages/gtk.scm | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index f31a510..4323711 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -916,13 +916,26 @@ toolkit.")
"12h2kd22iayvjfhmgjccm33igrbvqdj7hym31fsa1y0dhwzmf8gh"))))
(build-system gnu-build-system)
(native-inputs `(("pkg-config" ,pkg-config)
- ("glib" ,glib "bin"))) ;for 'glib-compile-resources'
+ ("glib" ,glib "bin") ;for 'glib-compile-resources'
+ ("xorg-server" ,xorg-server)))
(propagated-inputs
`(("pangomm" ,pangomm)
("cairomm" ,cairomm)
("atkmm" ,atkmm)
("gtk+" ,gtk+)
("glibmm" ,glibmm)))
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (add-before 'check 'run-xvfb
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((xorg-server (assoc-ref inputs "xorg-server")))
+ ;; Tests such as 'object_move/test' require a running
+ ;; X server.
+ (system (string-append xorg-server "/bin/Xvfb :1 &"))
+ (setenv "DISPLAY" ":1")
+ ;; Don't fail because of the missing /etc/machine-id.
+ (setenv "DBUS_FATAL_WARNINGS" "0")
+ #t))))))
(home-page "http://gtkmm.org/")
(synopsis
"C++ interface to the GTK+ graphical user interface library")
- branch gnome-updates created (now a8f7cde), ???, 2016/05/02
- 03/56: Revert "Revert "gnu: geoclue: Update to 2.4.3."", ???, 2016/05/02
- 02/56: Revert "Revert "gnu: inkscape: Fix build with glibmm-2.48."", ???, 2016/05/02
- 11/56: gnu: gtksourceview: Update to 3.20.2., ???, 2016/05/02
- 15/56: gnu: glib-networking: Update to 2.48.1., ???, 2016/05/02
- 06/56: gnu: gtkmm: Run Xvfb for tests.,
??? <=
- 19/56: gnu: gnome-terminal: Update to 3.20.1., ???, 2016/05/02
- 07/56: gnu: pango: Update to 1.40.1., ???, 2016/05/02
- 21/56: gnu: gnome-settings-daemon: Update to 3.20.1., ???, 2016/05/02
- 05/56: gnu: gedit: Fix build by passing '--disable-spell'., ???, 2016/05/02
- 09/56: gnu: at-spi2-atk: Update to 2.20.1., ???, 2016/05/02
- 12/56: gnu: gtkmm: Update to 3.20.1., ???, 2016/05/02
- 20/56: gnu: geocode-glib: Update to 3.20.1., ???, 2016/05/02
- 27/56: gnu: yelp-xsl: Update to 3.20.1., ???, 2016/05/02
- 24/56: gnu: eog: Update to 3.20.1., ???, 2016/05/02
- 26/56: gnu: epiphany: Update to 3.20.1., ???, 2016/05/02