From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 1/1] gnu: telepathy-logger: Disable parallel tests. Date: Sun, 28 Feb 2016 16:12:58 +0100 Message-ID: <87fuwcyikl.fsf@gnu.org> References: <8758efe0b01a2b3710d81c9270ddea88b1d52e2e.1456216984.git.leo@famulari.name> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34480) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aa320-0003Ea-9U for guix-devel@gnu.org; Sun, 28 Feb 2016 10:13:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aa31v-0008FM-01 for guix-devel@gnu.org; Sun, 28 Feb 2016 10:13:10 -0500 In-Reply-To: <8758efe0b01a2b3710d81c9270ddea88b1d52e2e.1456216984.git.leo@famulari.name> (Leo Famulari's message of "Tue, 23 Feb 2016 03:44:50 -0500") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Leo Famulari Cc: guix-devel@gnu.org Leo Famulari skribis: > * gnu/packages/freedesktop.scm (telepathy-logger)[arguments]: Disable par= allel > tests. > --- > gnu/packages/freedesktop.scm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm > index e23cc97..bff709c 100644 > --- a/gnu/packages/freedesktop.scm > +++ b/gnu/packages/freedesktop.scm > @@ -547,7 +547,8 @@ modems and setup connections with them.") > "1bjx85k7jyfi5pvl765fzc7q2iz9va51anrc2djv7caksqsdbjlg"))= )) > (build-system gnu-build-system) > (arguments > - '(#:phases > + '(#:parallel-tests? #f Thanks for fixing it! In the future it=E2=80=99s even better to add a comment with hints as to why tests aren=E2=80=99t parallel-safe, if possible. Ludo=E2=80=99.