From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5F3AF138010 for ; Fri, 14 Sep 2012 06:17:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAF2F21C02C; Fri, 14 Sep 2012 06:14:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9AC7821C02C for ; Fri, 14 Sep 2012 06:14:52 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D50D533D738 for ; Fri, 14 Sep 2012 06:14:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 27D04E5455 for ; Fri, 14 Sep 2012 06:14:49 +0000 (UTC) From: "Ulrich Mueller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Mueller" Message-ID: <1347517696.70ec5eda6a11c196ceafefbf47dc80140fe29b8a.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master commit in: / X-VCS-Repository: proj/pms X-VCS-Files: eapi-differences.tex ebuild-functions.tex X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: 70ec5eda6a11c196ceafefbf47dc80140fe29b8a X-VCS-Branch: master Date: Fri, 14 Sep 2012 06:14:49 +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: 688d78c2-d982-491e-9777-1c3f325910d3 X-Archives-Hash: 9d167457256d01ce4a26c34ed1a1dc5f commit: 70ec5eda6a11c196ceafefbf47dc80140fe29b8a Author: Ulrich Müller gentoo org> AuthorDate: Sun May 13 07:52:05 2012 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Thu Sep 13 06:28:16 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms.git;a=commit;h=70ec5eda EAPI 5: src_test supports parallel tests. See bug 363005. --- eapi-differences.tex | 4 ++++ ebuild-functions.tex | 24 ++++++++++++++++++++++-- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/eapi-differences.tex b/eapi-differences.tex index 40d3d5c..24fe4b2 100644 --- a/eapi-differences.tex +++ b/eapi-differences.tex @@ -88,6 +88,9 @@ Use dependencies & \compactfeatureref{use-deps} & \t{src\_compile} style & \compactfeatureref{src-compile} & 0 & 1 & 2 & 2 & 2 & 2 \\ +Parallel tests & \compactfeatureref{parallel-tests} & + No & No & No & No & No & Yes \\ + \t{src\_install} style & \compactfeatureref{src-install} & no-op & no-op & no-op & no-op & 4 & 4 \\ @@ -262,6 +265,7 @@ EAPI 5 is EAPI 4 with the following changes: \begin{compactitem} \item \t{REQUIRED\_USE} now supports \t{??} groups, \featureref{at-most-one-of}. \item Slot operator dependencies, \featureref{slot-operator-deps}. +\item \t{src\_test} supports parallel tests, \featureref{parallel-tests}. \item \t{EBUILD\_PHASE\_FUNC}, \featureref{ebuild-phase-func}. \item \t{USE} is calculated differently, \featureref{profile-iuse-injection}. \item \t{find} is guaranteed to be GNU, \featureref{gnu-find}. diff --git a/ebuild-functions.tex b/ebuild-functions.tex index cd4075c..1f2ab68 100644 --- a/ebuild-functions.tex +++ b/ebuild-functions.tex @@ -265,13 +265,33 @@ provided. The initial working directory must be \t{S} if that exists, falling back to \t{WORKDIR} otherwise. The default implementation used when the ebuild lacks the \t{src\_test} function must, if tests are -enabled, run \t{emake -j1 check} if and only if such a target is available, or if not run -\t{emake -j1 test} if and only if such a target is available. In both cases, if \t{emake} returns +enabled, run \t{emake check} if and only if such a target is available, or if not run +\t{emake test} if and only if such a target is available. In both cases, if \t{emake} returns non-zero the build must be aborted. +\featurelabel{parallel-tests} For EAPIs listed in table~\ref{tab:src-test-table} as not supporting +parallel tests, the \t{emake} command must be called with option \t{-j1}. + The \t{src\_test} function may be disabled by \t{RESTRICT}. See section~\ref{sec:restrict}. It may be disabled by user too, using a PM-specific mechanism. +\ChangeWhenAddingAnEAPI{5} +\begin{centertable}{\t{src\_test} behaviour for EAPIs} \label{tab:src-test-table} + \begin{tabular}{ l l } + \toprule + \multicolumn{1}{c}{\textbf{EAPI}} & + \multicolumn{1}{c}{\textbf{Supports parallel tests?}} \\ + \midrule + \t{0} & No \\ + \t{1} & No \\ + \t{2} & No \\ + \t{3} & No \\ + \t{4} & No \\ + \t{5} & Yes \\ + \bottomrule + \end{tabular} +\end{centertable} + \subsection{src\_install} \label{sec:src-install-function}