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 9C21D139694 for ; Mon, 13 Feb 2017 21:21:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8AA2E0C95; Mon, 13 Feb 2017 21:21:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B52BFE0C95 for ; Mon, 13 Feb 2017 21:21:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CF1D934155D for ; Mon, 13 Feb 2017 21:21:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CF1B46CE for ; Mon, 13 Feb 2017 21:21:22 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1487020813.a83fc4cc0a455829c0943fd2e4fa476343147b54.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/bluez-qt/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/bluez-qt/bluez-qt-9999.ebuild X-VCS-Directories: kde-frameworks/bluez-qt/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: a83fc4cc0a455829c0943fd2e4fa476343147b54 X-VCS-Branch: master Date: Mon, 13 Feb 2017 21:21:22 +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: 96ed78c3-3520-4595-a603-5f7f25a42ada X-Archives-Hash: 5c2804ae1985225c204f3199a66bb313 commit: a83fc4cc0a455829c0943fd2e4fa476343147b54 Author: Johannes Huber gentoo org> AuthorDate: Mon Feb 13 21:20:13 2017 +0000 Commit: Johannes Huber gentoo org> CommitDate: Mon Feb 13 21:20:13 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a83fc4cc kde-frameworks/bluez-qt: Don't run tests in parallel Gentoo-bug: 609248 Package-Manager: Portage-2.3.3, Repoman-2.3.1 kde-frameworks/bluez-qt/bluez-qt-9999.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild b/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild index bab447e159..03bee38bea 100644 --- a/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild +++ b/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild @@ -28,3 +28,10 @@ src_configure() { kde5_src_configure } + +src_test() { + # bug: 609248 + local myctestargs=( -j1 ) + + kde5_src_test +}