From: Sven Hartge Date: Tue, 10 Apr 2012 19:42:13 +0000 (+0200) Subject: [PATCH] Output some progress during CUSUM and RANDOM EXCURSION test X-Git-Tag: v1.9.5-alpha~12^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc50dda4d9a484e7c035d3590609377e1817518a;p=haveged [PATCH] Output some progress during CUSUM and RANDOM EXCURSION test Forwarded: by email to , CC to on 2016-06-27 Those tests takes enough time on mips to outbound the allowed 5 minutes of inactivity. So let's output a little more progress messages as a workaround. Gbp-Pq: Name 0002-Output-some-progress-during-CUSUM-and-RANDOM-EXCURSI.patch --- diff --git a/nist/packtest.c b/nist/packtest.c index 9439607..879cd73 100644 --- a/nist/packtest.c +++ b/nist/packtest.c @@ -557,6 +557,7 @@ PackTestL (int *ARRAY, int ArraySize, char *C) for (i = 4; i < ArraySize; i = (i << 1)) { int inter; + fprintf (stderr, "\t\t ArraySize: %d\n", i); inter = MOD (ARRAY[ArraySize - i], ArraySize - i); if (failure >= 8) { @@ -600,6 +601,7 @@ PackTestL (int *ARRAY, int ArraySize, char *C) for (i = 0; i < 8; i++) { int index; + fprintf (stderr, "\t\t Slice number: %d\n", i); index = (ArraySize / 8) * i; if (ArraySize > 262144) index = index + (MOD (ARRAY[index], (ArraySize / 8) - 32768));