diff options
-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 |