From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:50419) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXv3l-0006QN-GR for guix-patches@gnu.org; Mon, 03 Jun 2019 18:04:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXv3j-0008TU-Ch for guix-patches@gnu.org; Mon, 03 Jun 2019 18:04:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58020) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hXv3i-0008R4-JL for guix-patches@gnu.org; Mon, 03 Jun 2019 18:04:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hXv3i-0004GI-9T for guix-patches@gnu.org; Mon, 03 Jun 2019 18:04:02 -0400 Subject: [bug#36081] [PATCH] gnu: ghc-streaming-commons: Skip tests. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:50312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXv3O-0006Pz-Oi for guix-patches@gnu.org; Mon, 03 Jun 2019 18:03:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXv3N-0007ZM-HI for guix-patches@gnu.org; Mon, 03 Jun 2019 18:03:42 -0400 Received: from mx1.mailbox.org ([2001:67c:2050:104:0:1:25:1]:47746) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hXv3N-0006rv-AD for guix-patches@gnu.org; Mon, 03 Jun 2019 18:03:41 -0400 From: Robert Vollmert Date: Tue, 4 Jun 2019 00:02:54 +0200 Message-Id: <20190603220254.3038-1-rob@vllmrt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36081@debbugs.gnu.org Cc: Robert Vollmert There's a sporadic test failure, showing up particularly in Nix/Guix builds: https://github.com/fpco/streaming-commons/issues/49. * gnu/packages/haskell.scm (ghc-streaming-commons): Skip tests. --- gnu/packages/haskell.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 822b0499b6..a6eb7c3701 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -17,6 +17,7 @@ ;;; Copyright =C2=A9 2018, 2019 Timothy Sample ;;; Copyright =C2=A9 2018 Arun Isaac ;;; Copyright =C2=A9 2018, 2019 Gabriel Hondet +;;; Copyright =C2=A9 2019 Robert Vollmert ;;; ;;; This file is part of GNU Guix. ;;; @@ -1815,6 +1816,8 @@ version 1.3).") (base32 "13fn6qmpiggwpn8lczyydgp77cyzfypwds7wxskrwir4i5cgxlfq")))) (build-system haskell-build-system) + (arguments + `(#:tests? #f)) ; sporadic failure: https://github.com/fpco/stream= ing-commons/issues/49 (inputs `(("ghc-async" ,ghc-async) ("ghc-blaze-builder" ,ghc-blaze-builder) --=20 2.20.1 (Apple Git-117)