summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-01-17 16:47:02 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-01-17 16:47:02 +0000
commitd286305c5d6ecdd0f3ae341a607819738139f1ec (patch)
tree8b3e5394114d92d10f4ac97218112a6ff87ae9b9 /Makefile
parenta2320c4fc025a6262bc6cfa6e420d85fe8d60bd6 (diff)
downloadmandoc-d286305c5d6ecdd0f3ae341a607819738139f1ec.tar.gz
mandoc-d286305c5d6ecdd0f3ae341a607819738139f1ec.tar.zst
mandoc-d286305c5d6ecdd0f3ae341a607819738139f1ec.zip
Added tests to makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b0fcf0a3..1d14a893 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,20 @@ BINS = mdocml
CLEAN = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS)
+SUCCESS = test.1 test.7 test.8 test.9 test.11 test.11 test.12 test.16 \
+ test.17 test.19 test.20 test.21 test.23 test.25 test.27 \
+ test.28 test.29 test.31 test.32 test.33 test.34 test.35 \
+ test.38 test.39 test.40 test.41 test.42 test.43 test.44 \
+ test.45 test.46 test.47 test.49 test.51 test.52 test.53 \
+ test.54 test.55 test.56 test.57 test.58 test.59 test.60 \
+ test.62 test.67 test.68 test.71 test.72 test.73 test.74 \
+ test.75
+
+FAIL = test.0 test.2 test.3 test.4 test.5 test.6 test.13 test.14 \
+ test.15 test.18 test.22 test.24 test.26 test.30 test.36 \
+ test.37 test.48 test.50 test.61 test.63 test.64 test.65 \
+ test.66 test.69 test.70
+
all: $(BINS)
lint: $(LLNS)
@@ -28,6 +42,12 @@ mdocml: mdocml.o tree.o libmdoc.a
clean:
rm -f $(CLEAN)
+regress: mdocml $(SUCCESS) $(FAIL)
+ @for f in $(SUCCESS) ; do \
+ echo "./mdocml $$f" ; \
+ ./mdocml $$f || exit 1 ; \
+ done
+
llib-llibmdoc.ln: macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln validate.ln action.ln
$(LINT) $(LINTFLAGS) -Clibmdoc mdoc.ln macro.ln hash.ln strings.ln xstd.ln argv.ln validate.ln action.ln