From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH 02/11] gnu: at-spi2-core: Enable tests. Date: Wed, 8 Apr 2015 11:34:25 +0800 Message-ID: <1428464074-9794-2-git-send-email-iyzsong@gmail.com> References: <1428464074-9794-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52060) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yfgkm-0007mR-7y for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yfgkl-00022J-CI for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:12 -0400 Received: from mail-pa0-x22d.google.com ([2607:f8b0:400e:c03::22d]:33814) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yfgkl-00020z-4s for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:11 -0400 Received: by pacyx8 with SMTP id yx8so99976270pac.1 for ; Tue, 07 Apr 2015 20:34:10 -0700 (PDT) In-Reply-To: <1428464074-9794-1-git-send-email-iyzsong@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/gtk.scm (at-spi2-core)[arguments]: Remove #:tests? #f. Add #:phases. --- gnu/packages/gtk.scm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 113037f..459112c 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -342,6 +342,13 @@ in the GNOME project.") (base32 "1l3l39mw23zyjlcqidvkyqlr4gwbhplzw2hcv3qvn6p8ikxpf2qw")))) (build-system gnu-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (replace check + ;; Run test-suite under a dbus session. + (lambda _ + (zero? (system* "dbus-launch" "make" "check"))))))) (inputs `(("dbus" ,dbus) ("glib" ,glib) ("libxi" ,libxi) @@ -349,9 +356,6 @@ in the GNOME project.") (native-inputs `(("intltool" ,intltool) ("pkg-config" ,pkg-config))) - (arguments - `(#:tests? #f)) ; FIXME: dbind/dbtest fails; one should disable tests in - ; a more fine-grained way. (synopsis "Assistive Technology Service Provider Interface, core components") (description "The Assistive Technology Service Provider Interface, core components, -- 2.2.1