From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steffen Rytter Postas Subject: bug#36464: gstreamer test timing out Date: Mon, 1 Jul 2019 22:55:16 +0200 Message-ID: <71f6f62b-6048-6eec-0341-9fbc3f828e02@scalehost.eu> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:46505) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi3vZ-0007rB-36 for bug-guix@gnu.org; Mon, 01 Jul 2019 17:33:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi3vI-0001gE-R6 for bug-guix@gnu.org; Mon, 01 Jul 2019 17:33:18 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37368) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi3v5-0001d1-4j for bug-guix@gnu.org; Mon, 01 Jul 2019 17:33:07 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi3v4-0000qU-Tv for bug-guix@gnu.org; Mon, 01 Jul 2019 17:33:03 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:50933) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi3Rz-0002mu-II for bug-guix@gnu.org; Mon, 01 Jul 2019 17:03:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi3Rr-0002lT-M9 for bug-guix@gnu.org; Mon, 01 Jul 2019 17:02:53 -0400 Received: from [31.7.186.173] (port=40310 helo=necrophcodr.me) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi3Ro-0001W8-9Z for bug-guix@gnu.org; Mon, 01 Jul 2019 17:02:50 -0400 Received: from [192.168.22.110] (static-89-239-193-119.ip.fibianet.dk [89.239.193.119]) by necrophcodr.me (Postfix) with ESMTPSA id 2B21A92A6F29 for ; Mon, 1 Jul 2019 22:55:17 +0200 (CEST) Content-Language: en-US List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 36464@debbugs.gnu.org Hi, I've been having a few issues with the Jupyter package. First and foremost, this is my first time trying it out with Guix. Previously I have had it running using Docker, but I prefer the modularity and programmability of Guix, not to mention the rest of the amazing concepts it brings. However, nothing is perfect, and as we'll see here, that is indeed true. Let it ne known that I've tested this on my desktop, my work laptop, and my netbook, and only my netbook exhibits any issues. Both environments use the same command to execute, and are using `guix environment` to start the Jupyter notebook system: `LC_ALL=3DC guix environment -C -N --pure -m env.scm -- jupyter-notebook` The `env.scm` file used, is as follows: (define-packages '( =C2=A0=C2=A0=C2=A0 "glibc-utf8-locales" =C2=A0=C2=A0=C2=A0 "coreutils-minimal" =C2=A0=C2=A0=C2=A0 "bash" =C2=A0=C2=A0=C2=A0 "python" =C2=A0=C2=A0=C2=A0 "jupyter" =C2=A0=C2=A0=C2=A0 )) (use-modules (gnu packages)) (packages->manifest (map specification->package packages)) When attempting the above, the package "gstreamer" is attempted built (which is fine, when no substitutes are available, this is the intended behaviour of course), and takes quite a while (this is a dual core 800Mhz netbook from 2012. Not very impressive). Upon finishing the build, the gstreamer package is tested, and it has a single failure, which is the following: gst/gstelement.c:844:E:element tests:test_foreach_pad:0: (after this point) Test timeout expired Check suite gst_element ran in 30.164s (tests failed: 1) FAIL gst/gstelement (exit status: 1) As this appears to be a timeout, I am unable to reproduce this on my faster systems. Sincerely, Steffen Rytter Postas