diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-12-19 22:08:43 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-12-19 22:08:43 +0200 |
commit | 3b50111ac31a64e01a2e64a06c7c276f6b9424cf (patch) | |
tree | 00f75b630efe8f70632fac5086038625d767e990 /pc | |
parent | 8224cc546f7cfb0922fb69f3ad3f91313cf80e37 (diff) | |
download | egawk-3b50111ac31a64e01a2e64a06c7c276f6b9424cf.tar.gz egawk-3b50111ac31a64e01a2e64a06c7c276f6b9424cf.tar.bz2 egawk-3b50111ac31a64e01a2e64a06c7c276f6b9424cf.zip |
First steps fixing +inform, +nancy.
Diffstat (limited to 'pc')
-rw-r--r-- | pc/ChangeLog | 4 | ||||
-rw-r--r-- | pc/Makefile.tst | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index fe1a53d7..d8df9a37 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,7 @@ +2020-12-19 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.tst: Rebuilt. + 2020-11-01 Arnold D. Robbins <arnold@skeeve.com> * Makefile.tst: Rebuilt. diff --git a/pc/Makefile.tst b/pc/Makefile.tst index 318a5b64..96902d93 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -203,7 +203,8 @@ GAWK_EXT_TESTS = \ genpot gensub gensub2 gensub3 getlndir gnuops2 gnuops3 gnureops gsubind \ icasefs icasers id igncdym igncfs ignrcas2 ignrcas4 ignrcase incdupe \ incdupe2 incdupe3 incdupe4 incdupe5 incdupe6 incdupe7 include include2 \ - indirectbuiltin indirectcall indirectcall2 intarray iolint isarrayunset \ + indirectbuiltin indirectcall indirectcall2 inf-nan-torture \ + intarray iolint isarrayunset \ lint lintexp lintindex lintint lintlength lintplus lintold lintset lintwarn \ manyfiles match1 match2 match3 mbstr1 mbstr2 mixed1 mktime muldimposix \ nastyparm negtime next nondec nondec2 nonfatal1 nonfatal2 nonfatal3 \ @@ -2883,6 +2884,11 @@ indirectcall2: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +inf-nan-torture: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + intarray: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --non-decimal-data >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |