summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTorbjorn Granlund <tg@gmplib.org>2020-09-22 15:12:20 +0200
committerTorbjorn Granlund <tg@gmplib.org>2020-09-22 15:12:20 +0200
commitd8aa1dcc94212f0a91ede1317ac29645d85337dc (patch)
treea7a9e0d88f6808932689a1ed2bcdc5cc00792a71 /tests
parentbc5e79ff5928303cc55167f8969f8949ffe0a495 (diff)
downloadgmp-d8aa1dcc94212f0a91ede1317ac29645d85337dc.tar.gz
Print GMP_CHECK_FFT.
Diffstat (limited to 'tests')
-rw-r--r--tests/mpz/t-mul.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/mpz/t-mul.c b/tests/mpz/t-mul.c
index 66e021eac..0dc22e9d3 100644
--- a/tests/mpz/t-mul.c
+++ b/tests/mpz/t-mul.c
@@ -77,7 +77,10 @@ main (int argc, char **argv)
extra_fft = getenv ("GMP_CHECK_FFT");
fft_max_2exp = 0;
if (extra_fft != NULL)
- fft_max_2exp = atoi (extra_fft);
+ {
+ fft_max_2exp = atoi (extra_fft);
+ printf ("GMP_CHECK_FFT=%d (include this in bug reports)\n", fft_max_2exp);
+ }
if (fft_max_2exp <= 1) /* compat with old use of GMP_CHECK_FFT */
fft_max_2exp = 22; /* default limit, good for any machine */