Makefile revision 1.59 1 1.59 rillig # $NetBSD: Makefile,v 1.59 2020/06/28 09:42:40 rillig Exp $
2 1.1 sjg #
3 1.1 sjg # Unit tests for make(1)
4 1.1 sjg # The main targets are:
5 1.1 sjg #
6 1.1 sjg # all: run all the tests
7 1.42 apb # test: run 'all', and compare to expected results
8 1.1 sjg # accept: move generated output to expected results
9 1.1 sjg #
10 1.1 sjg # Adding a test case.
11 1.11 sjg # Each feature should get its own set of tests in its own suitably
12 1.42 apb # named makefile (*.mk), with its own set of expected results (*.exp),
13 1.42 apb # and it should be added to the TESTNAMES list.
14 1.1 sjg #
15 1.1 sjg
16 1.1 sjg .MAIN: all
17 1.1 sjg
18 1.7 sjg UNIT_TESTS:= ${.PARSEDIR}
19 1.44 apb .PATH: ${UNIT_TESTS}
20 1.7 sjg
21 1.42 apb # Each test is in a sub-makefile.
22 1.42 apb # Keep the list sorted.
23 1.42 apb TESTNAMES= \
24 1.16 rpaulo comment \
25 1.55 rillig cond-late \
26 1.59 rillig cond-short \
27 1.12 sjg cond1 \
28 1.52 sjg cond2 \
29 1.56 rillig dollar \
30 1.57 rillig doterror \
31 1.57 rillig dotwait \
32 1.26 sjg error \
33 1.21 sjg export \
34 1.21 sjg export-all \
35 1.36 sjg export-env \
36 1.34 sjg forloop \
37 1.24 sjg forsubst \
38 1.32 joerg hash \
39 1.58 rillig include-main \
40 1.31 sjg misc \
41 1.20 sjg moderrs \
42 1.11 sjg modmatch \
43 1.18 sjg modmisc \
44 1.15 sjg modorder \
45 1.11 sjg modts \
46 1.11 sjg modword \
47 1.35 sjg order \
48 1.13 sjg posix \
49 1.22 sjg qequals \
50 1.38 sjg sunshcmd \
51 1.31 sjg sysv \
52 1.11 sjg ternary \
53 1.25 sjg unexport \
54 1.25 sjg unexport-env \
55 1.39 apb varcmd \
56 1.43 apb varmisc \
57 1.54 rillig varmod-edge \
58 1.53 christos varquote \
59 1.39 apb varshell
60 1.11 sjg
61 1.51 sjg # these tests were broken by referting POSIX chanegs
62 1.51 sjg STRICT_POSIX_TESTS = \
63 1.51 sjg escape \
64 1.51 sjg impsrc \
65 1.51 sjg phony-end \
66 1.51 sjg posix1 \
67 1.51 sjg suffixes
68 1.51 sjg
69 1.42 apb # Override make flags for certain tests
70 1.26 sjg flags.doterror=
71 1.35 sjg flags.order=-j1
72 1.26 sjg
73 1.42 apb OUTFILES= ${TESTNAMES:S/$/.out/}
74 1.42 apb
75 1.42 apb all: ${OUTFILES}
76 1.9 sjg
77 1.48 apb CLEANFILES += *.rawout *.out *.status *.tmp *.core *.tmp
78 1.48 apb CLEANFILES += obj*.[och] lib*.a # posix1.mk
79 1.49 sjg CLEANFILES += issue* .[ab]* # suffixes.mk
80 1.48 apb CLEANRECURSIVE += dir dummy # posix1.mk
81 1.48 apb
82 1.1 sjg clean:
83 1.48 apb rm -f ${CLEANFILES}
84 1.48 apb .if !empty(CLEANRECURSIVE)
85 1.48 apb rm -rf ${CLEANRECURSIVE}
86 1.48 apb .endif
87 1.1 sjg
88 1.15 sjg TEST_MAKE?= ${.MAKE}
89 1.27 sjg TOOL_SED?= sed
90 1.1 sjg
91 1.28 sjg # ensure consistent results from sort(1)
92 1.30 sjg LC_ALL= C
93 1.28 sjg LANG= C
94 1.29 sjg .export LANG LC_ALL
95 1.28 sjg
96 1.42 apb # the tests are actually done with sub-makes.
97 1.42 apb .SUFFIXES: .mk .rawout .out
98 1.42 apb .mk.rawout:
99 1.42 apb @echo ${TEST_MAKE} ${flags.${.TARGET:R}:U-k} -f ${.IMPSRC}
100 1.42 apb -@cd ${.OBJDIR} && \
101 1.42 apb { ${TEST_MAKE} ${flags.${.TARGET:R}:U-k} -f ${.IMPSRC} \
102 1.42 apb 2>&1 ; echo $$? >${.TARGET:R}.status ; } > ${.TARGET}.tmp
103 1.42 apb @mv ${.TARGET}.tmp ${.TARGET}
104 1.42 apb
105 1.12 sjg # We always pretend .MAKE was called 'make'
106 1.12 sjg # and strip ${.CURDIR}/ from the output
107 1.13 sjg # and replace anything after 'stopped in' with unit-tests
108 1.12 sjg # so the results can be compared.
109 1.42 apb .rawout.out:
110 1.42 apb @echo postprocess ${.TARGET}
111 1.42 apb @${TOOL_SED} -e 's,^${TEST_MAKE:T:C/\./\\\./g}[][0-9]*:,make:,' \
112 1.42 apb -e 's,${TEST_MAKE:C/\./\\\./g},make,' \
113 1.42 apb -e '/stopped/s, /.*, unit-tests,' \
114 1.42 apb -e 's,${.CURDIR:C/\./\\\./g}/,,g' \
115 1.42 apb -e 's,${UNIT_TESTS:C/\./\\\./g}/,,g' \
116 1.42 apb < ${.IMPSRC} > ${.TARGET}.tmp
117 1.42 apb @echo "exit status `cat ${.TARGET:R}.status`" >> ${.TARGET}.tmp
118 1.42 apb @mv ${.TARGET}.tmp ${.TARGET}
119 1.42 apb
120 1.42 apb # Compare all output files
121 1.42 apb test: ${OUTFILES} .PHONY
122 1.42 apb @failed= ; \
123 1.42 apb for test in ${TESTNAMES}; do \
124 1.42 apb diff -u ${UNIT_TESTS}/$${test}.exp $${test}.out \
125 1.42 apb || failed="$${failed}$${failed:+ }$${test}" ; \
126 1.42 apb done ; \
127 1.42 apb if [ -n "$${failed}" ]; then \
128 1.42 apb echo "Failed tests: $${failed}" ; false ; \
129 1.42 apb else \
130 1.42 apb echo "All tests passed" ; \
131 1.42 apb fi
132 1.1 sjg
133 1.1 sjg accept:
134 1.42 apb @for test in ${TESTNAMES}; do \
135 1.42 apb cmp -s ${UNIT_TESTS}/$${test}.exp $${test}.out \
136 1.42 apb || { echo "Replacing $${test}.exp" ; \
137 1.42 apb cp $${test}.out ${UNIT_TESTS}/$${test}.exp ; } \
138 1.42 apb done
139 1.1 sjg
140 1.50 sjg .if exists(${TEST_MAKE})
141 1.50 sjg ${TESTNAMES:S/$/.rawout/}: ${TEST_MAKE}
142 1.50 sjg .endif
143 1.50 sjg
144 1.42 apb .-include <bsd.obj.mk>
145