From: A. Wilcox Date: Mon, 23 Jan 2017 18:01:13 +0000 (-0600) Subject: kde-frameworks/kpackage: Don't run tests in parallel X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=bc58c639281ed8a053588619584189dffd38b6ed;p=gentoo.git kde-frameworks/kpackage: Don't run tests in parallel Gentoo-bug: 606942 Closes: https://github.com/gentoo/gentoo/pull/3609 Package-Manager: portage-2.3.1 Signed-off-by: Johannes Huber --- diff --git a/kde-frameworks/kpackage/kpackage-5.29.1.ebuild b/kde-frameworks/kpackage/kpackage-5.29.1.ebuild index 2f8f4e5b02ae..f0fd29ad0946 100644 --- a/kde-frameworks/kpackage/kpackage-5.29.1.ebuild +++ b/kde-frameworks/kpackage/kpackage-5.29.1.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 +}