diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:17:38 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:17:38 +0300 |
commit | 19954b20017e04cb682c64b2994943d1895c17f5 (patch) | |
tree | 8d31eb6e9888c65d238935a4604f937bf00c1b08 /test/Makefile.am | |
parent | 115571b256bf9e2db3d5be53719b76ab6e6cf6ea (diff) | |
parent | 23fb6f0d2db3488fa85f6f7c975aba56be81806e (diff) | |
download | egawk-19954b20017e04cb682c64b2994943d1895c17f5.tar.gz egawk-19954b20017e04cb682c64b2994943d1895c17f5.tar.bz2 egawk-19954b20017e04cb682c64b2994943d1895c17f5.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 09bcc769..ea483401 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -871,6 +871,9 @@ EXTRA_DIST = \ rs.awk \ rs.in \ rs.ok \ + rscompat.awk \ + rscompat.in \ + rscompat.ok \ rsgetline.awk \ rsgetline.in \ rsgetline.ok \ @@ -1116,7 +1119,7 @@ BASIC_TESTS = \ rand randtest range1 readbuf rebrackloc rebt8b1 redfilnm \ regeq regexpbrack regexpbrack2 \ regexprange regrange reindops \ - reparse resplit rri1 rs rsnul1nl rsnulbig rsnulbig2 rstest1 rstest2 \ + reparse resplit rri1 rs rscompat rsnul1nl rsnulbig rsnulbig2 rstest1 rstest2 \ rstest3 rstest4 rstest5 rswhite \ scalar sclforin sclifin sortempty sortglos splitargv splitarr splitdef \ splitvar splitwht strcat1 strnum1 strtod subamp subi18n \ @@ -2232,6 +2235,11 @@ pty1: $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ;; \ esac +rscompat: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) --traditional -f $@.awk "$(srcdir)/$@.in" >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + # Targets generated for other tests: include Maketests |