From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 BE9CC1396D0 for ; Tue, 5 Sep 2017 17:13:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34771E0DD3; Tue, 5 Sep 2017 17:13:22 +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 16F76E0DD0 for ; Tue, 5 Sep 2017 17:13:22 +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 13CFC34167C for ; Tue, 5 Sep 2017 17:13:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C5288E37 for ; Tue, 5 Sep 2017 17:13:19 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1504631591.9e2f3e279d7b77e29b839804ba5c3ddbbe06d24c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/xfconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-base/xfconf/xfconf-4.13.4.ebuild X-VCS-Directories: xfce-base/xfconf/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9e2f3e279d7b77e29b839804ba5c3ddbbe06d24c X-VCS-Branch: master Date: Tue, 5 Sep 2017 17:13:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2a41afc1-544d-48c8-96be-4dde9feaa883 X-Archives-Hash: c4f8ec20c1a9283aaf5eb7349e44baca commit: 9e2f3e279d7b77e29b839804ba5c3ddbbe06d24c Author: Michał Górny gentoo org> AuthorDate: Tue Sep 5 17:09:32 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 5 17:13:11 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2f3e27 xfce-base/xfconf: Run tests with -j1 due to race condition Bug: https://bugzilla.xfce.org/show_bug.cgi?id=13840 Closes: https://bugs.gentoo.org/629960 xfce-base/xfconf/xfconf-4.13.4.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xfce-base/xfconf/xfconf-4.13.4.ebuild b/xfce-base/xfconf/xfconf-4.13.4.ebuild index eff57ca4550..d82d16a974d 100644 --- a/xfce-base/xfconf/xfconf-4.13.4.ebuild +++ b/xfce-base/xfconf/xfconf-4.13.4.ebuild @@ -52,7 +52,8 @@ my_test() { eval "${out}" local ret=0 - nonfatal emake check || ret=1 + # https://bugzilla.xfce.org/show_bug.cgi?id=13840 + nonfatal emake -j1 check || ret=1 kill "${XFCONFD_PID}" || ewarn "Unable to kill xfconfd" return "${ret}"