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 EA006138350 for ; Wed, 12 Feb 2020 23:11:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 215B4E085B; Wed, 12 Feb 2020 23:11:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 02907E085B for ; Wed, 12 Feb 2020 23:11:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CBC7634EC78 for ; Wed, 12 Feb 2020 23:11:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5286A134 for ; Wed, 12 Feb 2020 23:11:46 +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: <1581549048.3e6c2ae418a0cdd5f57a8f147e12b7ce89baa893.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/extra-cmake-modules/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/extra-cmake-modules/extra-cmake-modules-9999.ebuild X-VCS-Directories: kde-frameworks/extra-cmake-modules/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3e6c2ae418a0cdd5f57a8f147e12b7ce89baa893 X-VCS-Branch: master Date: Wed, 12 Feb 2020 23:11:46 +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: 122d252b-2181-40e2-994a-f7fe8a5928e4 X-Archives-Hash: 5680d826ae82e5bb6572f9380e797a7c commit: 3e6c2ae418a0cdd5f57a8f147e12b7ce89baa893 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Feb 11 14:54:53 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Feb 12 23:10:48 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=3e6c2ae4 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-9999.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-9999.ebuild b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-9999.ebuild index bb9758aa5c..3b4c614cc5 100644 --- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-9999.ebuild +++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-9999.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)" )