From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 19/43] gnu: Add ghc-bytestring. Date: Tue, 6 Sep 2016 22:35:06 -0400 Message-ID: <20160907023506.GA29997@jasmine> References: <20160904161742.27197-1-ng0@we.make.ritual.n0.is> <20160904161742.27197-19-ng0@we.make.ritual.n0.is> <20160905203727.GC3392@jasmine> <878tv43byl.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhShv-00076K-5r for guix-devel@gnu.org; Tue, 06 Sep 2016 22:35:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bhShs-0004x0-1Y for guix-devel@gnu.org; Tue, 06 Sep 2016 22:35:23 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:42766) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhShp-0004vC-ML for guix-devel@gnu.org; Tue, 06 Sep 2016 22:35:19 -0400 Content-Disposition: inline In-Reply-To: <878tv43byl.fsf@we.make.ritual.n0.is> 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" To: ng0 Cc: guix-devel@gnu.org On Tue, Sep 06, 2016 at 10:22:42PM +0000, ng0 wrote: > Leo Famulari writes: > > > On Sun, Sep 04, 2016 at 04:17:18PM +0000, ng0 wrote: > >> * gnu/packages/haskell.scm (ghc-bytestring): New variable. > > > >> + (arguments > >> + `(#:tests? #f)) ; Test number two becomes non-responsive for 20+ minutes > > > > I have used `strace -f` to check if long-running quiet tests are > > actually working or if they are stuck. That could help here. > > How did you do this in the build? > Or did you, what I suspect and would do, just run it without the guix > build, the "normal" way? I do it by attaching to the guix-daemon after learning it's PID: $ pgrep guix-daemon 30606 $ strace -f -p 30606 -o /tmp/logfile Then I do `guix build` from another terminal.