diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2020-07-06 16:13:25 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2020-07-06 16:13:25 -0400 |
commit | 12701888ede0f58d20c7bd9bdb4334d1bf10bce1 (patch) | |
tree | a8ce498947dc92f462e9c3eeddd73c16075e1ec5 | |
parent | 177df586e992824f80bf81a1b878c7a4076caedd (diff) | |
download | egawk-12701888ede0f58d20c7bd9bdb4334d1bf10bce1.tar.gz egawk-12701888ede0f58d20c7bd9bdb4334d1bf10bce1.tar.bz2 egawk-12701888ede0f58d20c7bd9bdb4334d1bf10bce1.zip |
Add $(GAWK_TEST_ARGS) to tests so we can run them with -M.
-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@ |