1# This is a generated file, do NOT edit!
2# See contrib/bmake/bsd.after-import.mk
3#
4# $FreeBSD$
5
6SRCTOP?= ${.CURDIR:H:H:H}
7
8# $Id: Makefile.in,v 1.44 2013/08/28 22:09:29 sjg Exp $
9#
10# $NetBSD: Makefile,v 1.38 2013/08/28 21:56:50 sjg Exp $
11#
12# Unit tests for make(1)
13# The main targets are:
14# 
15# all:	run all the tests
16# test:	run 'all', capture output and compare to expected results
17# accept: move generated output to expected results
18#
19# Adding a test case.  
20# Each feature should get its own set of tests in its own suitably
21# named makefile which should be added to SUBFILES to hook it in.
22# 
23
24srcdir= ${SRCTOP}/contrib/bmake/unit-tests
25
26.MAIN: all
27
28UNIT_TESTS:= ${srcdir}
29
30# Simple sub-makefiles - we run them as a black box
31# keep the list sorted.
32SUBFILES= \
33	comment \
34	cond1 \
35	error \
36	export \
37	export-all \
38	export-env \
39	doterror \
40	dotwait \
41	forloop \
42	forsubst \
43	hash \
44	misc \
45	moderrs \
46	modmatch \
47	modmisc \
48	modorder \
49	modts \
50	modword \
51	order \
52	phony-end \
53	posix \
54	qequals \
55	sunshcmd \
56	sysv \
57	ternary \
58	unexport \
59	unexport-env \
60	varcmd
61
62all: ${SUBFILES}
63
64flags.doterror=
65flags.order=-j1
66
67# the tests are actually done with sub-makes.
68.PHONY: ${SUBFILES}
69.PRECIOUS: ${SUBFILES}
70${SUBFILES}:
71	-@${.MAKE} ${flags.$@:U-k} -f ${UNIT_TESTS}/$@
72
73clean:
74	rm -f *.out *.fail *.core
75
76.sinclude <bsd.obj.mk>
77
78TEST_MAKE?= ${.MAKE}
79TOOL_SED?= sed
80TOOL_TR?= tr
81TOOL_DIFF?= diff
82DIFF_FLAGS?= -u
83
84.if defined(.PARSEDIR)
85# ensure consistent results from sort(1)
86LC_ALL= C
87LANG= C
88.export LANG LC_ALL
89.endif
90
91# The driver.
92# We always pretend .MAKE was called 'make' 
93# and strip ${.CURDIR}/ from the output
94# and replace anything after 'stopped in' with unit-tests
95# so the results can be compared.
96test:
97	@echo "${TEST_MAKE} -f ${MAKEFILE} > ${.TARGET}.out 2>&1"
98	@cd ${.OBJDIR} && ${TEST_MAKE} -f ${MAKEFILE} 2>&1 | \
99	${TOOL_TR} -d '\015' | \
100	${TOOL_SED} -e 's,^${TEST_MAKE:T:C/\./\\\./g}[^:]*:,make:,' \
101	-e '/stopped/s, /.*, unit-tests,' \
102	-e 's,${.CURDIR:C/\./\\\./g}/,,g' \
103	-e 's,${UNIT_TESTS:C/\./\\\./g}/,,g' > ${.TARGET}.out || { \
104	tail ${.TARGET}.out; mv ${.TARGET}.out ${.TARGET}.fail; exit 1; }
105	${TOOL_DIFF} ${DIFF_FLAGS} ${UNIT_TESTS}/${.TARGET}.exp ${.TARGET}.out
106
107accept:
108	mv test.out ${srcdir}/test.exp
109
110