diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-09 22:32:45 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-09 22:32:45 +0200 |
commit | d3a1acac12673875b21ad2a95ffd7be0fb220ae5 (patch) | |
tree | 84aedd316fb0ff4d302b403d8d6977b6834777ce /test/Makefile.in | |
parent | 32a9f7f24000827da433b89de7c24c5d95a561c6 (diff) | |
parent | 073460dda1b24bcb872186a0818859a6ccba727d (diff) | |
download | egawk-d3a1acac12673875b21ad2a95ffd7be0fb220ae5.tar.gz egawk-d3a1acac12673875b21ad2a95ffd7be0fb220ae5.tar.bz2 egawk-d3a1acac12673875b21ad2a95ffd7be0fb220ae5.zip |
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 54d4a114..337a48fc 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1128,6 +1128,8 @@ EXTRA_DIST = \ numsubstr.awk \ numsubstr.in \ numsubstr.ok \ + octdec.awk \ + octdec.ok \ octsub.awk \ octsub.ok \ ofmt.awk \ @@ -1709,6 +1711,7 @@ GAWK_EXT_TESTS = \ nastyparm negtime next nondec nondec2 nonfatal1 nonfatal2 nonfatal3 \ nsawk1a nsawk1b nsawk1c nsawk2a nsawk2b \ nsbad nsbad_cmd nsforloop nsfuncrecurse nsindirect1 nsindirect2 nsprof1 nsprof2 \ + octdec \ patsplit posix printfbad1 printfbad2 printfbad3 printfbad4 printhuge \ procinfs profile0 profile1 profile2 profile3 profile4 profile5 profile6 \ profile7 profile8 profile9 profile10 profile11 profile12 profile13 \ @@ -4723,6 +4726,11 @@ nsprof2: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --pretty-print=_$@ >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +octdec: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + patsplit: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |