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 A1911138350 for ; Tue, 11 Feb 2020 14:55:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0449E0886; Tue, 11 Feb 2020 14:55:57 +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 C403AE0886 for ; Tue, 11 Feb 2020 14:55:57 +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 93A6134EB6F for ; Tue, 11 Feb 2020 14:55:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A6A771 for ; Tue, 11 Feb 2020 14:55:54 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1581432902.efa62cf9d39061334ac24ca5bf767f047d51cfcd.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/extra-cmake-modules/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.67.0.ebuild X-VCS-Directories: kde-frameworks/extra-cmake-modules/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: efa62cf9d39061334ac24ca5bf767f047d51cfcd X-VCS-Branch: master Date: Tue, 11 Feb 2020 14:55:54 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2c1c159b-9c11-4b56-bda6-26e0fb9211fa X-Archives-Hash: b1e88d558b54d9b315c28393c68ba5c9 commit: efa62cf9d39061334ac24ca5bf767f047d51cfcd Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Feb 11 14:54:53 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Feb 11 14:55:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efa62cf9 kde-frameworks/extra-cmake-modules: Don't run tests in parallel Reported-by: Paolo Pedroni iol.it> Closes: https://bugs.gentoo.org/701854 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.67.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.67.0.ebuild b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.67.0.ebuild index 35862e15da7..5a9859acaa9 100644 --- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.67.0.ebuild +++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.67.0.ebuild @@ -66,7 +66,9 @@ src_configure() { src_test() { # ECMToolchainAndroidTest passes but then breaks src_install # ECMPoQmToolsTest is broken, bug #627806 + # possible race condition with multiple jobs, bug #701854 local myctestargs=( + -j1 -E "(ECMToolchainAndroidTest|ECMPoQmToolsTest)" )