Makefile revision 1.32
11.32Sjoerg# $NetBSD: Makefile,v 1.32 2011/04/07 01:40:02 joerg 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.1Ssjg# test:	run 'all', capture output 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.11Ssjg# named makefile which should be added to SUBFILES to hook it in.
131.1Ssjg# 
141.1Ssjg
151.1Ssjg.MAIN: all
161.1Ssjg
171.7SsjgUNIT_TESTS:= ${.PARSEDIR}
181.7Ssjg
191.11Ssjg# Simple sub-makefiles - we run them as a black box
201.11Ssjg# keep the list sorted.
211.11SsjgSUBFILES= \
221.16Srpaulo	comment \
231.12Ssjg	cond1 \
241.26Ssjg	error \
251.21Ssjg	export \
261.21Ssjg	export-all \
271.26Ssjg	doterror \
281.19Sapb	dotwait \
291.24Ssjg	forsubst \
301.32Sjoerg	hash \
311.31Ssjg	misc \
321.20Ssjg	moderrs \
331.11Ssjg	modmatch \
341.18Ssjg	modmisc \
351.15Ssjg	modorder \
361.11Ssjg	modts \
371.11Ssjg	modword \
381.13Ssjg	posix \
391.22Ssjg	qequals \
401.31Ssjg	sysv \
411.11Ssjg	ternary \
421.25Ssjg	unexport \
431.25Ssjg	unexport-env \
441.11Ssjg	varcmd
451.11Ssjg
461.11Ssjgall: ${SUBFILES}
471.11Ssjg
481.26Ssjgflags.doterror=
491.26Ssjg
501.11Ssjg# the tests are actually done with sub-makes.
511.11Ssjg.PHONY: ${SUBFILES}
521.19Sapb.PRECIOUS: ${SUBFILES}
531.11Ssjg${SUBFILES}:
541.26Ssjg	-@${.MAKE} ${flags.$@:U-k} -f ${UNIT_TESTS}/$@
551.9Ssjg
561.1Ssjgclean:
571.1Ssjg	rm -f *.out *.fail *.core
581.1Ssjg
591.27Ssjg.-include <bsd.obj.mk>
601.1Ssjg
611.15SsjgTEST_MAKE?= ${.MAKE}
621.27SsjgTOOL_SED?= sed
631.1Ssjg
641.28Ssjg# ensure consistent results from sort(1)
651.30SsjgLC_ALL= C
661.28SsjgLANG= C
671.29Ssjg.export LANG LC_ALL
681.28Ssjg
691.11Ssjg# The driver.
701.12Ssjg# We always pretend .MAKE was called 'make' 
711.12Ssjg# and strip ${.CURDIR}/ from the output
721.13Ssjg# and replace anything after 'stopped in' with unit-tests
731.12Ssjg# so the results can be compared.
741.1Ssjgtest:
751.1Ssjg	@echo "${TEST_MAKE} -f ${MAKEFILE} > ${.TARGET}.out 2>&1"
761.6Ssjg	@cd ${.OBJDIR} && ${TEST_MAKE} -f ${MAKEFILE} 2>&1 | \
771.23Sapb	${TOOL_SED} -e 's,^${TEST_MAKE:T:C/\./\\\./g}:,make:,' \
781.13Ssjg	-e '/stopped/s, /.*, unit-tests,' \
791.17Sapb	-e 's,${.CURDIR:C/\./\\\./g}/,,g' \
801.17Sapb	-e 's,${UNIT_TESTS:C/\./\\\./g}/,,g' > ${.TARGET}.out || { \
811.1Ssjg	tail ${.TARGET}.out; mv ${.TARGET}.out ${.TARGET}.fail; exit 1; }
821.7Ssjg	diff -u ${UNIT_TESTS}/${.TARGET}.exp ${.TARGET}.out
831.1Ssjg
841.1Ssjgaccept:
851.1Ssjg	mv test.out ${.CURDIR}/test.exp
861.1Ssjg
87