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 DB932139085 for ; Tue, 24 Jan 2017 00:21:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEDF823400B; Tue, 24 Jan 2017 00:21:21 +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 C578023400B for ; Tue, 24 Jan 2017 00:21:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 812D534169F for ; Tue, 24 Jan 2017 00:21:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6D837F8 for ; Tue, 24 Jan 2017 00:21:18 +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: <1485215285.cd59ebcee770639905016fa97be7e26965b4551e.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kpackage/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/kpackage/kpackage-9999.ebuild X-VCS-Directories: kde-frameworks/kpackage/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cd59ebcee770639905016fa97be7e26965b4551e X-VCS-Branch: master Date: Tue, 24 Jan 2017 00:21:18 +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: 10e8b3c8-ebf0-4d99-8f97-25ace35f0428 X-Archives-Hash: 570b9dae703a936e3a6ef77e3ed77b0b commit: cd59ebcee770639905016fa97be7e26965b4551e Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jan 23 23:45:31 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jan 23 23:48:05 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=cd59ebce kde-frameworks/kpackage: Fix parallel test failure Gentoo-bug: 606942 Thanks-to: A. Wilcox foxkit.us> Package-Manager: portage-2.3.0 kde-frameworks/kpackage/kpackage-9999.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/kde-frameworks/kpackage/kpackage-9999.ebuild b/kde-frameworks/kpackage/kpackage-9999.ebuild index f099054..5644a64 100644 --- a/kde-frameworks/kpackage/kpackage-9999.ebuild +++ b/kde-frameworks/kpackage/kpackage-9999.ebuild @@ -28,3 +28,12 @@ src_configure() { kde5_src_configure } + +src_test() { + # tests cannot be run in parallel #606942 + local myctestargs=( + -j1 + ) + + kde5_src_test +}