From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1108846-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 03FCB138334 for <garchives@archives.gentoo.org>; Mon, 2 Sep 2019 14:14:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3772DE0872; Mon, 2 Sep 2019 14:14:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1B58DE0872 for <gentoo-commits@lists.gentoo.org>; Mon, 2 Sep 2019 14:14:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8247134AA67 for <gentoo-commits@lists.gentoo.org>; Mon, 2 Sep 2019 14:14:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99104766 for <gentoo-commits@lists.gentoo.org>; Mon, 2 Sep 2019 14:14:12 +0000 (UTC) From: "Mart Raudsepp" <leio@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" <leio@gentoo.org> Message-ID: <1567433083.da77cabcae7381d4e56cb56918af3cc8b541f1af.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/gjs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/gjs/gjs-1.56.2.ebuild X-VCS-Directories: dev-libs/gjs/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: da77cabcae7381d4e56cb56918af3cc8b541f1af X-VCS-Branch: master Date: Mon, 2 Sep 2019 14:14:12 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6868a103-5794-4062-a572-e626a5e97ad3 X-Archives-Hash: 6714f270a56110c30ad90abe21435240 commit: da77cabcae7381d4e56cb56918af3cc8b541f1af Author: Mart Raudsepp <leio <AT> gentoo <DOT> org> AuthorDate: Mon Sep 2 14:04:16 2019 +0000 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org> CommitDate: Mon Sep 2 14:04:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da77cabc dev-libs/gjs-1.56.2: get tests to pass Disabled Xvfb tests for now, as some of them are having issues with discussions with upstream ongoing. Wrap the tests run inside dbus-run-session, despite upstream Makefiles trying to do that already for some tests - seem to be missing for some, or other mysterious problems when not doing our own dbus-run-session too. Package-Manager: Portage-2.3.69, Repoman-2.3.12 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org> dev-libs/gjs/gjs-1.56.2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/gjs/gjs-1.56.2.ebuild b/dev-libs/gjs/gjs-1.56.2.ebuild index 071966de153..d436481cec5 100644 --- a/dev-libs/gjs/gjs-1.56.2.ebuild +++ b/dev-libs/gjs/gjs-1.56.2.ebuild @@ -44,8 +44,9 @@ src_configure() { $(use_with gtk) \ $(use_enable readline) \ $(use_with test dbus-tests) \ - $(use_with test xvfb-tests) \ - --disable-installed-tests + --disable-installed-tests \ + --without-xvfb-tests + #$(use_with test xvfb-tests) # https://gitlab.gnome.org/GNOME/gjs/issues/280 } src_install() { @@ -62,5 +63,5 @@ src_install() { } src_test() { - virtx default + virtx dbus-run-session emake check || die }