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 1A2E7138332 for ; Thu, 8 Mar 2018 22:19:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28AC5E0973; Thu, 8 Mar 2018 22:19:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0572CE095D for ; Thu, 8 Mar 2018 22:19:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 292A3335C34 for ; Thu, 8 Mar 2018 22:19:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC6F8216 for ; Thu, 8 Mar 2018 22:19:04 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1520547532.25bd6378d4a39b05c085c91de2abbdfbb721b42e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lit/lit-6.0.9999.ebuild dev-python/lit/lit-9999.ebuild X-VCS-Directories: dev-python/lit/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 25bd6378d4a39b05c085c91de2abbdfbb721b42e X-VCS-Branch: master Date: Thu, 8 Mar 2018 22:19:04 +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: 54adc618-2e7e-4806-b8b6-2fb00486c7f3 X-Archives-Hash: 7c746a6d530c2369d14a7c2c12390bc5 commit: 25bd6378d4a39b05c085c91de2abbdfbb721b42e Author: Michał Górny gentoo org> AuthorDate: Thu Mar 8 21:57:28 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 8 22:18:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25bd6378 dev-python/lit: Control lit job count Closes: https://bugs.gentoo.org/649554 dev-python/lit/lit-6.0.9999.ebuild | 5 +++-- dev-python/lit/lit-9999.ebuild | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/dev-python/lit/lit-6.0.9999.ebuild b/dev-python/lit/lit-6.0.9999.ebuild index f167a14c32b..d3e98d7342b 100644 --- a/dev-python/lit/lit-6.0.9999.ebuild +++ b/dev-python/lit/lit-6.0.9999.ebuild @@ -4,7 +4,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) -inherit distutils-r1 git-r3 +inherit distutils-r1 git-r3 multiprocessing DESCRIPTION="A stand-alone install of the LLVM suite testing tool" HOMEPAGE="https://llvm.org/" @@ -36,5 +36,6 @@ src_unpack() { } python_test() { - ./lit.py -vv tests || die + ./lit.py -j "${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}" \ + -vv tests || die } diff --git a/dev-python/lit/lit-9999.ebuild b/dev-python/lit/lit-9999.ebuild index 43d292abf1d..74471d6212c 100644 --- a/dev-python/lit/lit-9999.ebuild +++ b/dev-python/lit/lit-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) -inherit distutils-r1 git-r3 +inherit distutils-r1 git-r3 multiprocessing DESCRIPTION="A stand-alone install of the LLVM suite testing tool" HOMEPAGE="https://llvm.org/" @@ -35,5 +35,6 @@ src_unpack() { } python_test() { - ./lit.py -vv tests || die + ./lit.py -j "${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}" \ + -vv tests || die }