From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-951894-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 865D4139694 for <garchives@archives.gentoo.org>; Thu, 25 May 2017 09:15:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4109E0EA4; Thu, 25 May 2017 09:15:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8FBC4E0EA4 for <gentoo-commits@lists.gentoo.org>; Thu, 25 May 2017 09:15:41 +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 470C53416F6 for <gentoo-commits@lists.gentoo.org>; Thu, 25 May 2017 09:15:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E10567455 for <gentoo-commits@lists.gentoo.org>; Thu, 25 May 2017 09:15:38 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@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, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1495703714.dec487a226e80f841e37e9bf422b9ec3b08de94c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kcoreaddons/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kcoreaddons/kcoreaddons-5.34.0-r1.ebuild X-VCS-Directories: kde-frameworks/kcoreaddons/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: dec487a226e80f841e37e9bf422b9ec3b08de94c X-VCS-Branch: master Date: Thu, 25 May 2017 09:15:38 +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-Archives-Salt: 5bd514e0-5775-4642-95d8-2a9d9636ef59 X-Archives-Hash: fa891a5ff34f7bece6f157b42729f8ac commit: dec487a226e80f841e37e9bf422b9ec3b08de94c Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Thu May 25 09:13:57 2017 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu May 25 09:15:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dec487a2 kde-frameworks/kcoreaddons: Don't run tests in parallel Gentoo-bug: 619656 Package-Manager: Portage-2.3.5, Repoman-2.3.1 kde-frameworks/kcoreaddons/kcoreaddons-5.34.0-r1.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kde-frameworks/kcoreaddons/kcoreaddons-5.34.0-r1.ebuild b/kde-frameworks/kcoreaddons/kcoreaddons-5.34.0-r1.ebuild index cf10cf9decb..e37a9b6e007 100644 --- a/kde-frameworks/kcoreaddons/kcoreaddons-5.34.0-r1.ebuild +++ b/kde-frameworks/kcoreaddons/kcoreaddons-5.34.0-r1.ebuild @@ -30,3 +30,10 @@ src_configure() { kde5_src_configure } + +src_test() { + # bug: 619656 + local myctestargs=( -j1 ) + + kde5_src_test +}