diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2018-02-07 14:16:47 -0500 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2018-02-07 14:16:47 -0500 |
commit | f9ff7769b7b38973bf7447b8ca596435ccf77b67 (patch) | |
tree | 28313e5d0755e3e10c10619edcc660202a0dd8fe /test/Maketests | |
parent | 9b4b32b5911b9d51643d2efd6c646f17e5214c03 (diff) | |
download | egawk-f9ff7769b7b38973bf7447b8ca596435ccf77b67.tar.gz egawk-f9ff7769b7b38973bf7447b8ca596435ccf77b67.tar.bz2 egawk-f9ff7769b7b38973bf7447b8ca596435ccf77b67.zip |
Fix bug printing +"01" in regular and MPFR mode.
Diffstat (limited to 'test/Maketests')
-rw-r--r-- | test/Maketests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Maketests b/test/Maketests index 314aaaec..e449dd30 100644 --- a/test/Maketests +++ b/test/Maketests @@ -1037,6 +1037,11 @@ uparrfs: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +uplus: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + wjposer1: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |