From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46601) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hmh9U-0007au-9I for guix-patches@gnu.org; Sun, 14 Jul 2019 12:15:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hmh9T-00031v-3g for guix-patches@gnu.org; Sun, 14 Jul 2019 12:15:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36882) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hmh9S-00031g-Vx for guix-patches@gnu.org; Sun, 14 Jul 2019 12:15:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hmh9S-0003IP-OU for guix-patches@gnu.org; Sun, 14 Jul 2019 12:15:02 -0400 Subject: [bug#36258] [PATCH 1/2] gnu: monero: Update to 0.14.1.0. Resent-Message-ID: References: <20190617084436.12311-1-glv@posteo.net> <49b66acb-c2f9-5fd0-97aa-16711ae933e1@riseup.net> <87imsx2rk3.fsf@yamatai> <87blyobgzl.fsf@yamatai> <9abcc53c-1a07-d3b3-2b9f-1571328c7414@riseup.net> <87y31rtijx.fsf@yamatai> <87mui63rnd.fsf@yamatai> <11d7747e-a7c8-3f29-dd8a-7dc1534dfc23@riseup.net> <871rz74eli.fsf@gnu.org> <11a6e577-7cde-0be1-acf2-9f2ab13145ed@riseup.net> <87pnmcltpn.fsf@yamatai> <87tvbo68tb.fsf@gnu.org> From: Guillaume Le Vaillant In-reply-to: Date: Sun, 14 Jul 2019 18:13:51 +0200 Message-ID: <87o91wlhkw.fsf@yamatai> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: swedebugia Cc: 36258-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable swedebugia a =C3=A9crit : > On 2019-07-14 15:32, Ludovic Court=C3=A8s wrote: > ... >> >> I=E2=80=99d rather not disable tests just because they take a long time. >> >> An obvious workaround would be to have the test machinery display some >> sort of progress report or really anything that shows it=E2=80=99s still= =E2=80=9Cdoing >> something=E2=80=9D so that we don=E2=80=99t hit max-silent-timeout. >> >> Do you know if the build system or CTest has a flag that would make it >> more verbose? > > It has: > https://linux.die.net/man/1/ctest > > -V,--verbose > Enable verbose output from tests. > Test output is normally suppressed and only summary information is displa= yed. > This option will show all test output. > > -VV,--extra-verbose > Enable more verbose output from tests. > Test output is normally suppressed and only summary information is displa= yed. > This option will show even more test output. > > --debug > Displaying more verbose internals of CTest. > This feature will result in large number of output that is mostly useful = for > debugging dashboard problems. > > Could you test those Guillaume and see if it helps us? Adding the '--verbose' option (patch in attachment) makes the test phase print many things, which should fix the 'max-silent-timeout' issue. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-monero-Make-tests-more-verbose.patch Content-Description: 0001-gnu-monero-Make-tests-more-verbose.patch >From 52c9affbebff3cf2e7d89b918060b46721fa6bd5 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Sun, 14 Jul 2019 17:37:19 +0200 Subject: [PATCH] gnu: monero: Make tests more verbose. Increase the verbosity of the 'check' phase to prevent 'core_tests' from hitting 'max-silent-timeout'. * gnu/packages/finance.scm (monero)[arguments]: Add '--verbose' option to 'check' phase. --- gnu/packages/finance.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 918ba006f2..977ac9c19c 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -509,7 +509,7 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch ;; Only try tests that don't need access to network or system (replace 'check (lambda _ - (invoke "make" "ARGS=-R 'hash|core_tests'" "test"))) + (invoke "make" "ARGS=-R 'hash|core_tests' --verbose" "test"))) (add-after 'check 'unit-tests (lambda _ (let ((excluded-unit-tests -- 2.22.0 --=-=-=--