Makefile revision 1.64
1# $NetBSD: Makefile,v 1.64 2020/07/25 21:19:29 rillig Exp $
2#
3# Unit tests for make(1)
4#
5# The main targets are:
6#
7# all:
8#	run all the tests
9# test:
10#	run 'all', and compare to expected results
11# accept:
12#	move generated output to expected results
13#
14# Settable variables
15#
16# TEST_MAKE
17#	The make program to be tested.
18#
19#
20# Adding a test case
21#
22# Each feature should get its own set of tests in its own suitably
23# named makefile (*.mk), with its own set of expected results (*.exp),
24# and it should be added to the TESTS list.
25#
26# Any added files must also be added to src/distrib/sets/lists/tests/mi.
27# Makefiles that are not added to TESTS must be ignored in
28# src/tests/usr.bin/make/t_make.sh (example: include-sub).
29#
30
31# Each test is in a sub-makefile.
32# Keep the list sorted.
33TESTS+=		comment
34TESTS+=		cond-late
35TESTS+=		cond-short
36TESTS+=		cond1
37TESTS+=		cond2
38TESTS+=		dollar
39TESTS+=		doterror
40TESTS+=		dotwait
41TESTS+=		envfirst
42TESTS+=		error
43TESTS+=		# escape	# broken by reverting POSIX changes
44TESTS+=		export
45TESTS+=		export-all
46TESTS+=		export-env
47TESTS+=		forloop
48TESTS+=		forsubst
49TESTS+=		hash
50TESTS+=		# impsrc	# broken by reverting POSIX changes
51TESTS+=		include-main
52TESTS+=		misc
53TESTS+=		moderrs
54TESTS+=		modmatch
55TESTS+=		modmisc
56TESTS+=		modorder
57TESTS+=		modts
58TESTS+=		modword
59TESTS+=		order
60TESTS+=		# phony-end	# broken by reverting POSIX changes
61TESTS+=		posix
62TESTS+=		# posix1	# broken by reverting POSIX changes
63TESTS+=		qequals
64TESTS+=		# suffixes	# broken by reverting POSIX changes
65TESTS+=		sunshcmd
66TESTS+=		sysv
67TESTS+=		ternary
68TESTS+=		unexport
69TESTS+=		unexport-env
70TESTS+=		varcmd
71TESTS+=		vardebug
72TESTS+=		varfind
73TESTS+=		varmisc
74TESTS+=		varmod-edge
75TESTS+=		varquote
76TESTS+=		varshell
77
78# Override environment variables for some of the tests.
79ENV.envfirst=		FROM_ENV=value-from-env
80
81# Override make flags for some of the tests; default is -k.
82FLAGS.doterror=		# none
83FLAGS.order=		-j1
84FLAGS.envfirst=		-e
85FLAGS.vardebug=		-k -dv FROM_CMDLINE=
86
87# Some tests need extra post-processing.
88SED_CMDS.modmisc+=	-e 's,\(substitution error:\).*,\1 (details omitted),'
89SED_CMDS.varshell+=	-e 's,^[a-z]*sh: ,,'
90SED_CMDS.varshell+=	-e '/command/s,No such.*,not found,'
91
92# Some tests need an additional round of postprocessing.
93POSTPROC.vardebug=	${TOOL_SED} -n -e '/:RELEVANT = yes/,/:RELEVANT = no/p'
94
95# End of the configuration section.
96
97.MAIN: all
98
99UNIT_TESTS:=	${.PARSEDIR}
100.PATH: ${UNIT_TESTS}
101
102OUTFILES=	${TESTS:=.out}
103
104all: ${OUTFILES}
105
106CLEANFILES+=		*.rawout *.out *.status *.tmp *.core *.tmp
107CLEANFILES+=		obj*.[och] lib*.a	# posix1.mk
108CLEANFILES+=		issue* .[ab]*		# suffixes.mk
109CLEANRECURSIVE+=	dir dummy		# posix1.mk
110
111clean:
112	rm -f ${CLEANFILES}
113.if !empty(CLEANRECURSIVE)
114	rm -rf ${CLEANRECURSIVE}
115.endif
116
117TEST_MAKE?=	${.MAKE}
118TOOL_SED?=	sed
119
120# ensure consistent results from sort(1)
121LC_ALL=		C
122LANG=		C
123.export LANG LC_ALL
124
125# the tests are actually done with sub-makes.
126.SUFFIXES: .mk .rawout .out
127.mk.rawout:
128	@echo testing ${.IMPSRC}
129	@set -eu; \
130	cd ${.OBJDIR}; \
131	${ENV.${.TARGET:R}} ${TEST_MAKE} \
132	  ${FLAGS.${.TARGET:R}:U-k} -f ${.IMPSRC} \
133	  > ${.TARGET}.tmp 2>&1 \
134	&& status=$$? || status=$$?; \
135	echo $$status > ${.TARGET:R}.status
136	@mv ${.TARGET}.tmp ${.TARGET}
137
138# Post-process the test output so that the results can be compared.
139#
140# always pretend .MAKE was called 'make'
141_SED_CMDS+=	-e 's,^${TEST_MAKE:T:S,.,\\.,g}[][0-9]*:,make:,'
142_SED_CMDS+=	-e 's,${TEST_MAKE:S,.,\\.,g},make,'
143# replace anything after 'stopped in' with unit-tests
144_SED_CMDS+=	-e '/stopped/s, /.*, unit-tests,'
145# strip ${.CURDIR}/ from the output
146_SED_CMDS+=	-e 's,${.CURDIR:S,.,\\.,g}/,,g'
147_SED_CMDS+=	-e 's,${UNIT_TESTS:S,.,\\.,g}/,,g'
148
149.rawout.out:
150	@echo postprocess ${.TARGET}
151	@${TOOL_SED} ${_SED_CMDS} ${SED_CMDS.${.TARGET:R}} \
152	  < ${.IMPSRC} > ${.TARGET}.tmp1
153	@${POSTPROC.${.TARGET:R}:U${TOOL_SED}} < ${.TARGET}.tmp1 > ${.TARGET}.tmp2
154	@rm ${.TARGET}.tmp1
155	@echo "exit status `cat ${.TARGET:R}.status`" >> ${.TARGET}.tmp2
156	@mv ${.TARGET}.tmp2 ${.TARGET}
157
158# Compare all output files
159test:	${OUTFILES} .PHONY
160	@failed= ; \
161	for test in ${TESTS}; do \
162	  diff -u ${UNIT_TESTS}/$${test}.exp $${test}.out \
163	  || failed="$${failed}$${failed:+ }$${test}" ; \
164	done ; \
165	if [ -n "$${failed}" ]; then \
166	  echo "Failed tests: $${failed}" ; false ; \
167	else \
168	  echo "All tests passed" ; \
169	fi
170
171accept:
172	@for test in ${TESTS}; do \
173	  cmp -s ${UNIT_TESTS}/$${test}.exp $${test}.out \
174	  || { echo "Replacing $${test}.exp" ; \
175	       cp $${test}.out ${UNIT_TESTS}/$${test}.exp ; } \
176	done
177
178.if exists(${TEST_MAKE})
179${TESTS:=.rawout}: ${TEST_MAKE}
180.endif
181
182.-include <bsd.obj.mk>
183