Makefile revision 1.57
11.57Srillig# $NetBSD: Makefile,v 1.57 2020/05/10 12:42:11 rillig Exp $
21.1Ssjg#
31.1Ssjg# Unit tests for make(1)
41.1Ssjg# The main targets are:
51.1Ssjg# 
61.1Ssjg# all:	run all the tests
71.42Sapb# test:	run 'all', and compare to expected results
81.1Ssjg# accept: move generated output to expected results
91.1Ssjg#
101.1Ssjg# Adding a test case.  
111.11Ssjg# Each feature should get its own set of tests in its own suitably
121.42Sapb# named makefile (*.mk), with its own set of expected results (*.exp),
131.42Sapb# and it should be added to the TESTNAMES list.
141.1Ssjg# 
151.1Ssjg
161.1Ssjg.MAIN: all
171.1Ssjg
181.7SsjgUNIT_TESTS:= ${.PARSEDIR}
191.44Sapb.PATH: ${UNIT_TESTS}
201.7Ssjg
211.42Sapb# Each test is in a sub-makefile.
221.42Sapb# Keep the list sorted.
231.42SapbTESTNAMES= \
241.16Srpaulo	comment \
251.55Srillig	cond-late \
261.12Ssjg	cond1 \
271.52Ssjg	cond2 \
281.56Srillig	dollar \
291.57Srillig	doterror \
301.57Srillig	dotwait \
311.26Ssjg	error \
321.21Ssjg	export \
331.21Ssjg	export-all \
341.36Ssjg	export-env \
351.34Ssjg	forloop \
361.24Ssjg	forsubst \
371.32Sjoerg	hash \
381.31Ssjg	misc \
391.20Ssjg	moderrs \
401.11Ssjg	modmatch \
411.18Ssjg	modmisc \
421.15Ssjg	modorder \
431.11Ssjg	modts \
441.11Ssjg	modword \
451.35Ssjg	order \
461.13Ssjg	posix \
471.22Ssjg	qequals \
481.38Ssjg	sunshcmd \
491.31Ssjg	sysv \
501.11Ssjg	ternary \
511.25Ssjg	unexport \
521.25Ssjg	unexport-env \
531.39Sapb	varcmd \
541.43Sapb	varmisc \
551.54Srillig	varmod-edge \
561.53Schristos	varquote \
571.39Sapb	varshell
581.11Ssjg
591.51Ssjg# these tests were broken by referting POSIX chanegs
601.51SsjgSTRICT_POSIX_TESTS = \
611.51Ssjg	escape \
621.51Ssjg	impsrc \
631.51Ssjg	phony-end \
641.51Ssjg	posix1 \
651.51Ssjg	suffixes
661.51Ssjg
671.42Sapb# Override make flags for certain tests
681.26Ssjgflags.doterror=
691.35Ssjgflags.order=-j1
701.26Ssjg
711.42SapbOUTFILES= ${TESTNAMES:S/$/.out/}
721.42Sapb
731.42Sapball: ${OUTFILES}
741.9Ssjg
751.48SapbCLEANFILES += *.rawout *.out *.status *.tmp *.core *.tmp
761.48SapbCLEANFILES += obj*.[och] lib*.a		# posix1.mk
771.49SsjgCLEANFILES += issue* .[ab]*		# suffixes.mk
781.48SapbCLEANRECURSIVE += dir dummy		# posix1.mk
791.48Sapb
801.1Ssjgclean:
811.48Sapb	rm -f ${CLEANFILES}
821.48Sapb.if !empty(CLEANRECURSIVE)
831.48Sapb	rm -rf ${CLEANRECURSIVE}
841.48Sapb.endif
851.1Ssjg
861.15SsjgTEST_MAKE?= ${.MAKE}
871.27SsjgTOOL_SED?= sed
881.1Ssjg
891.28Ssjg# ensure consistent results from sort(1)
901.30SsjgLC_ALL= C
911.28SsjgLANG= C
921.29Ssjg.export LANG LC_ALL
931.28Ssjg
941.42Sapb# the tests are actually done with sub-makes.
951.42Sapb.SUFFIXES: .mk .rawout .out
961.42Sapb.mk.rawout:
971.42Sapb	@echo ${TEST_MAKE} ${flags.${.TARGET:R}:U-k} -f ${.IMPSRC}
981.42Sapb	-@cd ${.OBJDIR} && \
991.42Sapb	{ ${TEST_MAKE} ${flags.${.TARGET:R}:U-k} -f ${.IMPSRC} \
1001.42Sapb	  2>&1 ; echo $$? >${.TARGET:R}.status ; } > ${.TARGET}.tmp
1011.42Sapb	@mv ${.TARGET}.tmp ${.TARGET}
1021.42Sapb
1031.12Ssjg# We always pretend .MAKE was called 'make' 
1041.12Ssjg# and strip ${.CURDIR}/ from the output
1051.13Ssjg# and replace anything after 'stopped in' with unit-tests
1061.12Ssjg# so the results can be compared.
1071.42Sapb.rawout.out:
1081.42Sapb	@echo postprocess ${.TARGET}
1091.42Sapb	@${TOOL_SED} -e 's,^${TEST_MAKE:T:C/\./\\\./g}[][0-9]*:,make:,' \
1101.42Sapb	  -e 's,${TEST_MAKE:C/\./\\\./g},make,' \
1111.42Sapb	  -e '/stopped/s, /.*, unit-tests,' \
1121.42Sapb	  -e 's,${.CURDIR:C/\./\\\./g}/,,g' \
1131.42Sapb	  -e 's,${UNIT_TESTS:C/\./\\\./g}/,,g' \
1141.42Sapb	  < ${.IMPSRC} > ${.TARGET}.tmp
1151.42Sapb	@echo "exit status `cat ${.TARGET:R}.status`" >> ${.TARGET}.tmp
1161.42Sapb	@mv ${.TARGET}.tmp ${.TARGET}
1171.42Sapb
1181.42Sapb# Compare all output files
1191.42Sapbtest:	${OUTFILES} .PHONY
1201.42Sapb	@failed= ; \
1211.42Sapb	for test in ${TESTNAMES}; do \
1221.42Sapb	  diff -u ${UNIT_TESTS}/$${test}.exp $${test}.out \
1231.42Sapb	  || failed="$${failed}$${failed:+ }$${test}" ; \
1241.42Sapb	done ; \
1251.42Sapb	if [ -n "$${failed}" ]; then \
1261.42Sapb	  echo "Failed tests: $${failed}" ; false ; \
1271.42Sapb	else \
1281.42Sapb	  echo "All tests passed" ; \
1291.42Sapb	fi
1301.1Ssjg
1311.1Ssjgaccept:
1321.42Sapb	@for test in ${TESTNAMES}; do \
1331.42Sapb	  cmp -s ${UNIT_TESTS}/$${test}.exp $${test}.out \
1341.42Sapb	  || { echo "Replacing $${test}.exp" ; \
1351.42Sapb	       cp $${test}.out ${UNIT_TESTS}/$${test}.exp ; } \
1361.42Sapb	done
1371.1Ssjg
1381.50Ssjg.if exists(${TEST_MAKE})
1391.50Ssjg${TESTNAMES:S/$/.rawout/}: ${TEST_MAKE}
1401.50Ssjg.endif
1411.50Ssjg
1421.42Sapb.-include <bsd.obj.mk>
143