aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-09-21 13:15:38 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-09-21 13:15:38 +0300
commit5e4861ab4c41b6e000dc1f66225486330b5e5a2d (patch)
treea9da099527a1967356381e93512126f813605d0a /test/Makefile.in
parentf6a89a9b3ecd956e97b61719ea0d634886ace814 (diff)
downloadegawk-5e4861ab4c41b6e000dc1f66225486330b5e5a2d.tar.gz
egawk-5e4861ab4c41b6e000dc1f66225486330b5e5a2d.tar.bz2
egawk-5e4861ab4c41b6e000dc1f66225486330b5e5a2d.zip
Bug fix for trailing backslash in dynamic regexp.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 34ec85bc..3a6f5649 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1419,6 +1419,9 @@ EXTRA_DIST = \
tradanch.awk \
tradanch.in \
tradanch.ok \
+ trailbs.awk \
+ trailbs.in \
+ trailbs.ok \
tweakfld.awk \
tweakfld.in \
tweakfld.ok \
@@ -1528,7 +1531,7 @@ BASIC_TESTS = \
sigpipe1 sortempty sortglos spacere splitargv splitarr \
splitdef splitvar splitwht status-close strcat1 strnum1 strnum2 strtod \
subamp subback subi18n subsepnm subslash substr swaplns synerr1 synerr2 \
- tailrecurse tradanch tweakfld \
+ tailrecurse tradanch trailbs tweakfld \
uninit2 uninit3 uninit4 uninit5 uninitialized unterm uparrfs uplus \
wideidx wideidx2 widesub widesub2 widesub3 widesub4 wjposer1 \
zero2 zeroe0 zeroflag
@@ -3767,6 +3770,11 @@ tradanch:
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk --traditional < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+trailbs:
+ @echo $@
+ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
+
uninit2:
@echo $@
@AWKPATH="$(srcdir)" $(AWK) -f $@.awk --lint >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@