aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/ChangeLog5
-rw-r--r--test/Makefile.am4
-rw-r--r--test/Makefile.in9
-rw-r--r--test/Maketests5
4 files changed, 21 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 2f5a461b..94bf6924 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+Fri Apr 15 13:49:36 2011 Arnold D. Robbins <arnold@skeeve.com>
+
+ * ofmta.awk, ofmta.ok: New files from John Haque.
+ * Makefile.am (ofmta): New test.
+
Thu Apr 7 21:44:06 2011 Arnold D. Robbins <arnold@skeeve.com>
* arraysort.awk, arraysort.ok: Added more test cases.
diff --git a/test/Makefile.am b/test/Makefile.am
index ad44ffa8..321cbde3 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -471,6 +471,8 @@ EXTRA_DIST = \
ofmt.awk \
ofmt.in \
ofmt.ok \
+ ofmta.awk \
+ ofmta.ok \
ofmtbig.awk \
ofmtbig.in \
ofmtbig.ok \
@@ -752,7 +754,7 @@ BASIC_TESTS = addcomma anchgsub argarray arrayparm arrayprm2 arrayprm3 \
minusstr mmap8k mtchi18n nasty nasty2 negexp negrange nested next \
nfldstr nfneg \
nfset nlfldsep nlinstr nlstrina noeffect nofile nofmtch noloop1 \
- noloop2 nonl noparms nors nulrsend numindex numsubstr octsub ofmt \
+ noloop2 nonl noparms nors nulrsend numindex numsubstr octsub ofmt ofmta \
ofmtbig ofmtfidl ofmts onlynl opasnidx opasnslf paramdup paramres \
paramtyp parse1 parsefld parseme pcntplus prdupval prec printf0 \
printf1 prmarscl prmreuse prt1eval prtoeval posix2008sub rand range1 \
diff --git a/test/Makefile.in b/test/Makefile.in
index 7e57d7e1..8319041c 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -656,6 +656,8 @@ EXTRA_DIST = \
ofmt.awk \
ofmt.in \
ofmt.ok \
+ ofmta.awk \
+ ofmta.ok \
ofmtbig.awk \
ofmtbig.in \
ofmtbig.ok \
@@ -937,7 +939,7 @@ BASIC_TESTS = addcomma anchgsub argarray arrayparm arrayprm2 arrayprm3 \
minusstr mmap8k mtchi18n nasty nasty2 negexp negrange nested next \
nfldstr nfneg \
nfset nlfldsep nlinstr nlstrina noeffect nofile nofmtch noloop1 \
- noloop2 nonl noparms nors nulrsend numindex numsubstr octsub ofmt \
+ noloop2 nonl noparms nors nulrsend numindex numsubstr octsub ofmt ofmta \
ofmtbig ofmtfidl ofmts onlynl opasnidx opasnslf paramdup paramres \
paramtyp parse1 parsefld parseme pcntplus prdupval prec printf0 \
printf1 prmarscl prmreuse prt1eval prtoeval posix2008sub rand range1 \
@@ -2213,6 +2215,11 @@ ofmt:
@AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@
+ofmta:
+ @echo ofmta
+ @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@
+
ofmtbig:
@echo ofmtbig
@AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
diff --git a/test/Maketests b/test/Maketests
index 70b7df68..2f2ff93a 100644
--- a/test/Maketests
+++ b/test/Maketests
@@ -510,6 +510,11 @@ ofmt:
@AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@
+ofmta:
+ @echo ofmta
+ @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@
+
ofmtbig:
@echo ofmtbig
@AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@