diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-08-13 17:03:19 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-08-13 17:03:19 -0400 |
commit | bcc0594e9b64c89b56e8ea6891c0a9f8b97c57d1 (patch) | |
tree | a9b1274d4c91673b6da697f31d82177b16538913 /test/Maketests | |
parent | 492c24d65f760edea1f9228260930728eb747cf7 (diff) | |
download | egawk-bcc0594e9b64c89b56e8ea6891c0a9f8b97c57d1.tar.gz egawk-bcc0594e9b64c89b56e8ea6891c0a9f8b97c57d1.tar.bz2 egawk-bcc0594e9b64c89b56e8ea6891c0a9f8b97c57d1.zip |
Rationalize strong regex as param to sub/gsub. Add tests.
Diffstat (limited to 'test/Maketests')
-rw-r--r-- | test/Maketests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Maketests b/test/Maketests index a36ac8cf..12cc1644 100644 --- a/test/Maketests +++ b/test/Maketests @@ -1880,6 +1880,11 @@ profile15: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk --pretty-print=_$@ >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +regexsub: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + regnul1: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |