From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44397) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dx6fV-0002dw-QR for guix-patches@gnu.org; Wed, 27 Sep 2017 03:22:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dx6fS-0008OK-M7 for guix-patches@gnu.org; Wed, 27 Sep 2017 03:22:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53660) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dx6fS-0008OD-Hb for guix-patches@gnu.org; Wed, 27 Sep 2017 03:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dx6fS-0002SZ-AI for guix-patches@gnu.org; Wed, 27 Sep 2017 03:22:02 -0400 Subject: [bug#28616] disable failing bluez test Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44222) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dx6f7-0002Cv-QS for guix-patches@gnu.org; Wed, 27 Sep 2017 03:21:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dx6f4-00086u-LL for guix-patches@gnu.org; Wed, 27 Sep 2017 03:21:41 -0400 Received: from s02-out3.spamexperts.axc.nl ([185.175.203.26]:40157) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dx6f4-00085Y-9h for guix-patches@gnu.org; Wed, 27 Sep 2017 03:21:38 -0400 Received: from vserver42.axc.nl ([185.182.56.92]) by s02.spamexperts.axc.nl with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.89) (envelope-from ) id 1dx6ey-0003KN-BI for guix-patches@gnu.org; Wed, 27 Sep 2017 09:21:34 +0200 Received: from mail.axc.nl ([185.182.56.42]:39488) by vserver42.axc.nl with esmtp (Exim 4.89) (envelope-from ) id 1dx6eu-0001KH-4C for guix-patches@gnu.org; Wed, 27 Sep 2017 09:21:29 +0200 Date: Wed, 27 Sep 2017 09:21:05 +0200 (CEST) Message-Id: <20170927.092105.443051876281349513.post@thomasdanckaert.be> From: Thomas Danckaert Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Wed_Sep_27_09_21_05_2017_601)--" Content-Transfer-Encoding: 7bit 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: 28616@debbugs.gnu.org ----Next_Part(Wed_Sep_27_09_21_05_2017_601)-- Content-Type: Text/Plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit A test for the bluez package that previously failed only (?) on ARM, now seems to fail more widely. It seems the same problem was discussed on the linux-bluetooth mailing list here. https://marc.info/?t=149578476300002&r=1&w=2 Apparently the test fails when no network is available. I suggest to disable the test for now... Thomas ----Next_Part(Wed_Sep_27_09_21_05_2017_601)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="0001-gnu-bluez-Mark-segfaulting-test-with-XFAIL.patch" >From 6a1a2c0e437552109be72ff257fbd9ae410774c1 Mon Sep 17 00:00:00 2001 From: Thomas Danckaert Date: Wed, 27 Sep 2017 09:14:02 +0200 Subject: [PATCH] gnu: bluez: Mark segfaulting test with XFAIL. * gnu/packages/linux.scm (bluez): [arguments] Mark test-gatt with XFAIL. --- gnu/packages/linux.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2a3a40801..a50e465f1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3090,10 +3090,9 @@ Bluetooth audio output devices like headphones or loudspeakers.") (string-append (assoc-ref inputs "eudev") "/bin/udevadm"))) #t)))) - ;; FIXME: Skip one test that segfaults on ARM. - ,@(if (string=? (%current-system) "armhf-linux") - '(#:make-flags '("XFAIL_TESTS=unit/test-gatt")) - '()))) + ;; FIXME: Skip one test that segfaults. + #:make-flags '("XFAIL_TESTS=unit/test-gatt"))) + (native-inputs `(("pkg-config" ,pkg-config) ("gettext" ,gettext-minimal))) -- 2.14.1 ----Next_Part(Wed_Sep_27_09_21_05_2017_601)----