diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-05 21:29:47 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-05 21:29:47 +0200 |
commit | 0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd (patch) | |
tree | afc0ffb888de22ece1b07213c24746ed3633e81b /test/Makefile.in | |
parent | aa58c798bed920b6051c4459488195df2b76aaf4 (diff) | |
parent | 71a50ec092b75ce2b2f969892c6cd443d44777a5 (diff) | |
download | egawk-0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd.tar.gz egawk-0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd.tar.bz2 egawk-0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd.zip |
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 6144e749..62a93182 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1116,6 +1116,8 @@ EXTRA_DIST = \ nsforloop.ok \ nsfuncrecurse.awk \ nsfuncrecurse.ok \ + nsidentifier.awk \ + nsidentifier.ok \ nsindirect1.awk \ nsindirect1.ok \ nsindirect2.awk \ @@ -1722,7 +1724,7 @@ GAWK_EXT_TESTS = \ modifiers muldimposix 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 \ + nsidentifier nsindirect2 nsprof1 nsprof2 octdec patsplit posix printfbad1 \ printfbad2 printfbad3 printfbad4 printhuge procinfs profile0 \ profile1 profile10 profile11 profile12 profile13 profile14 \ profile15 profile16 profile2 profile3 profile4 profile5 profile6 \ @@ -4735,6 +4737,11 @@ nsfuncrecurse: @-AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +nsidentifier: + @echo $@ + @-AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + nsindirect1: @echo $@ @-AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |