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 33DED139085 for ; Tue, 24 Jan 2017 00:26:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54F86E0D21; Tue, 24 Jan 2017 00:26:03 +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 32E7AE0D21 for ; Tue, 24 Jan 2017 00:26:03 +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 44211340DD8 for ; Tue, 24 Jan 2017 00:26:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC2477F9 for ; Tue, 24 Jan 2017 00:26:00 +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: <1485217528.6654627bd7f77c860a82e27e5c50c96d3c367c15.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kimap/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kimap/kimap-16.12.1.ebuild X-VCS-Directories: kde-apps/kimap/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6654627bd7f77c860a82e27e5c50c96d3c367c15 X-VCS-Branch: master Date: Tue, 24 Jan 2017 00:26:00 +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: 269cca16-66fd-4ca5-b31b-a82bc73af489 X-Archives-Hash: 38cd77a4725a088483efd368289568a7 commit: 6654627bd7f77c860a82e27e5c50c96d3c367c15 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jan 23 23:57:17 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jan 24 00:25:28 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6654627b kde-apps/kimap: Fix parallel test failure Gentoo-bug: 605586 Reported-by: Paolo Pedroni iol.it> Package-Manager: portage-2.3.0 kde-apps/kimap/kimap-16.12.1.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/kde-apps/kimap/kimap-16.12.1.ebuild b/kde-apps/kimap/kimap-16.12.1.ebuild index 54da463..34def04 100644 --- a/kde-apps/kimap/kimap-16.12.1.ebuild +++ b/kde-apps/kimap/kimap-16.12.1.ebuild @@ -22,3 +22,12 @@ DEPEND=" dev-libs/cyrus-sasl " RDEPEND="${DEPEND}" + +src_test() { + # tests cannot be run in parallel #605586 + local myctestargs=( + -j1 + ) + + kde5_src_test +}