diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-05 12:58:33 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-05 12:58:33 +0300 |
commit | 9bf467bbe0bf6868919b2a672f70b945f320c7a8 (patch) | |
tree | fae9239d2abb81635790f2db9da33fdb9a89ec1c /test/Makefile.in | |
parent | 7bfc288d27bacb715ff63dbf71be53304917685a (diff) | |
download | egawk-9bf467bbe0bf6868919b2a672f70b945f320c7a8.tar.gz egawk-9bf467bbe0bf6868919b2a672f70b945f320c7a8.tar.bz2 egawk-9bf467bbe0bf6868919b2a672f70b945f320c7a8.zip |
New test for OFS from Nelson Beebe.
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 be567702..56c07305 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -727,6 +727,9 @@ EXTRA_DIST = \ ofmts.awk \ ofmts.in \ ofmts.ok \ + ofs1.awk \ + ofs1.in \ + ofs1.ok \ onlynl.awk \ onlynl.in \ onlynl.ok \ @@ -1021,7 +1024,7 @@ BASIC_TESTS = \ nasty nasty2 negexp negrange nested nfldstr nfneg nfset nlfldsep \ nlinstr nlstrina noeffect nofile nofmtch noloop1 noloop2 nonl \ noparms nors nulrsend numindex numsubstr \ - octsub ofmt ofmta ofmtbig ofmtfidl ofmts onlynl opasnidx opasnslf \ + octsub ofmt ofmta ofmtbig ofmtfidl ofmts ofs1 onlynl opasnidx opasnslf \ paramdup paramres paramtyp parse1 parsefld parseme pcntplus \ posix2008sub prdupval prec printf0 printf1 prmarscl prmreuse \ prt1eval prtoeval \ @@ -2410,6 +2413,11 @@ ofmts: @AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ +ofs1: + @echo ofs1 + @AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ + onlynl: @echo onlynl @AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |