diff options
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index d70282a8..9a9922f2 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2020-07-06 Andrew J. Schorr <aschorr@telemetry-investments.com> + + * Makefile.am (AWK): Append $(GAWK_TEST_ARGS) to enable running + tests with -M enabled for MPFR debugging. + 2020-07-05 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (EXTRA_DIST): New tests, mpfrcase, mpfrnonum. diff --git a/test/Makefile.am b/test/Makefile.am index 7a1b4491..b7e3240f 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1580,7 +1580,7 @@ VALGRIND = # # And we set AWKLIBPATH to find the extension libraries we built. LOCALES = LANGUAGE= LC_ALL=$${GAWKLOCALE:-C} LANG=$${GAWKLOCALE:-C} -AWK = $(LOCALES) AWKLIBPATH=../extension/.libs $(VALGRIND) $(AWKPROG) +AWK = $(LOCALES) AWKLIBPATH=../extension/.libs $(VALGRIND) $(AWKPROG) $(GAWK_TEST_ARGS) # Message stuff is to make it a little easier to follow. # Make the pass-fail last and dependent on others to avoid diff --git a/test/Makefile.in b/test/Makefile.in index dc691adb..afa233fb 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -161,7 +161,7 @@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ -AWK = $(LOCALES) AWKLIBPATH=../extension/.libs $(VALGRIND) $(AWKPROG) +AWK = $(LOCALES) AWKLIBPATH=../extension/.libs $(VALGRIND) $(AWKPROG) $(GAWK_TEST_ARGS) CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ |