diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-27 11:16:30 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-27 11:16:30 +0200 |
commit | d20231532ba6a11a5b37c064a31a0c9e50b13724 (patch) | |
tree | a3c672bbc2539f06f37511caaf56f9ed356d9a28 | |
parent | 1420350115cb5e14f839ba6ad7713979db4afe99 (diff) | |
download | egawk-d20231532ba6a11a5b37c064a31a0c9e50b13724.tar.gz egawk-d20231532ba6a11a5b37c064a31a0c9e50b13724.tar.bz2 egawk-d20231532ba6a11a5b37c064a31a0c9e50b13724.zip |
Fix dist to include mpfr tests and fix reginttrad.
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 15 | ||||
-rw-r--r-- | test/Makefile.in | 15 |
3 files changed, 33 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 3486817e..89d10028 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2013-01-27 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (EXTRA_DIST): Add all the mpfr test files. Duh. + (reginttrad): Use $(srcdir)/$@.awk. Double Duh. + 2013-01-27 Andrew J. Schorr <aschorr@telemetry-investments.com> * Makefile.am: Add mpfr tests if MPFR is available. diff --git a/test/Makefile.am b/test/Makefile.am index 69bbfbf1..c8a67d19 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -495,6 +495,19 @@ EXTRA_DIST = \ minusstr.ok \ mixed1.ok \ mmap8k.in \ + mpfrbigint.awk \ + mpfrbigint.ok \ + mpfrexprange.awk \ + mpfrexprange.ok \ + mpfrieee.awk \ + mpfrieee.ok \ + mpfrnr.awk \ + mpfrnr.in \ + mpfrnr.ok \ + mpfrrnd.awk \ + mpfrrnd.ok \ + mpfrsort.awk \ + mpfrsort.ok \ mtchi18n.awk \ mtchi18n.in \ mtchi18n.ok \ @@ -1773,7 +1786,7 @@ symtab8: reginttrad: @echo $@ - @$(AWK) --traditional -r -f $@.awk > _$@ + @$(AWK) --traditional -r -f $(srcdir)/$@.awk > _$@ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ # Targets generated for other tests: diff --git a/test/Makefile.in b/test/Makefile.in index 2b154743..ba26b6aa 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -707,6 +707,19 @@ EXTRA_DIST = \ minusstr.ok \ mixed1.ok \ mmap8k.in \ + mpfrbigint.awk \ + mpfrbigint.ok \ + mpfrexprange.awk \ + mpfrexprange.ok \ + mpfrieee.awk \ + mpfrieee.ok \ + mpfrnr.awk \ + mpfrnr.in \ + mpfrnr.ok \ + mpfrrnd.awk \ + mpfrrnd.ok \ + mpfrsort.awk \ + mpfrsort.ok \ mtchi18n.awk \ mtchi18n.in \ mtchi18n.ok \ @@ -2148,7 +2161,7 @@ symtab8: reginttrad: @echo $@ - @$(AWK) --traditional -r -f $@.awk > _$@ + @$(AWK) --traditional -r -f $(srcdir)/$@.awk > _$@ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ Gt-dummy: # file Maketests, generated from Makefile.am by the Gentests program |