diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-06-08 22:54:54 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-06-08 22:54:54 +0300 |
commit | 98c043ed84ea6fe877561da25e1bf94f68374a67 (patch) | |
tree | d07e306e3dbb831469804191c53d71e3aefb1cc9 /test/Makefile.in | |
parent | af38e153c3de3710b7e828f52869b446c73c808d (diff) | |
download | egawk-98c043ed84ea6fe877561da25e1bf94f68374a67.tar.gz egawk-98c043ed84ea6fe877561da25e1bf94f68374a67.tar.bz2 egawk-98c043ed84ea6fe877561da25e1bf94f68374a67.zip |
Bug fix in symbol lookup, could break watchpoints.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 23f50afc..df874d1b 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1243,6 +1243,9 @@ EXTRA_DIST = \ symtab8.ok \ symtab9.awk \ symtab9.ok \ + symtab10.awk \ + symtab10.in \ + symtab10.ok \ synerr1.awk \ synerr1.ok \ synerr2.awk \ @@ -1373,7 +1376,7 @@ GAWK_EXT_TESTS = \ rsstart2 rsstart3 rstest6 shadow sortfor sortu split_after_fpat \ splitarg4 strftime \ strtonum switch2 symtab1 symtab2 symtab3 symtab4 symtab5 symtab6 \ - symtab7 symtab8 symtab9 \ + symtab7 symtab8 symtab9 symtab10 \ watchpoint1 EXTRA_TESTS = inftest regtest @@ -2597,6 +2600,11 @@ rscompat: @echo $@ @AWKPATH="$(srcdir)" $(AWK) --traditional -f $@.awk "$(srcdir)/$@.in" >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + +symtab10: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -D -f $@.awk < "$(srcdir)/$@.in" >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ Gt-dummy: # file Maketests, generated from Makefile.am by the Gentests program addcomma: |