Makefile revision 1.66
1# $NetBSD: Makefile,v 1.66 2020/07/26 22:15:36 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+= varparse-dynamic 76TESTS+= varquote 77TESTS+= varshell 78 79# Override environment variables for some of the tests. 80ENV.envfirst= FROM_ENV=value-from-env 81ENV.varmisc= FROM_ENV=env 82ENV.varmisc+= FROM_ENV_BEFORE=env 83ENV.varmisc+= FROM_ENV_AFTER=env 84 85# Override make flags for some of the tests; default is -k. 86FLAGS.doterror= # none 87FLAGS.order= -j1 88FLAGS.envfirst= -e 89FLAGS.vardebug= -k -dv FROM_CMDLINE= 90 91# Some tests need extra post-processing. 92SED_CMDS.modmisc+= -e 's,\(substitution error:\).*,\1 (details omitted),' 93SED_CMDS.varshell+= -e 's,^[a-z]*sh: ,,' 94SED_CMDS.varshell+= -e '/command/s,No such.*,not found,' 95 96# Some tests need an additional round of postprocessing. 97POSTPROC.vardebug= ${TOOL_SED} -n -e '/:RELEVANT = yes/,/:RELEVANT = no/p' 98 99# End of the configuration section. 100 101.MAIN: all 102 103UNIT_TESTS:= ${.PARSEDIR} 104.PATH: ${UNIT_TESTS} 105 106OUTFILES= ${TESTS:=.out} 107 108all: ${OUTFILES} 109 110CLEANFILES+= *.rawout *.out *.status *.tmp *.core *.tmp 111CLEANFILES+= obj*.[och] lib*.a # posix1.mk 112CLEANFILES+= issue* .[ab]* # suffixes.mk 113CLEANRECURSIVE+= dir dummy # posix1.mk 114 115clean: 116 rm -f ${CLEANFILES} 117.if !empty(CLEANRECURSIVE) 118 rm -rf ${CLEANRECURSIVE} 119.endif 120 121TEST_MAKE?= ${.MAKE} 122TOOL_SED?= sed 123 124# ensure consistent results from sort(1) 125LC_ALL= C 126LANG= C 127.export LANG LC_ALL 128 129# the tests are actually done with sub-makes. 130.SUFFIXES: .mk .rawout .out 131.mk.rawout: 132 @echo testing ${.IMPSRC} 133 @set -eu; \ 134 cd ${.OBJDIR}; \ 135 ${ENV.${.TARGET:R}} ${TEST_MAKE} \ 136 ${FLAGS.${.TARGET:R}:U-k} -f ${.IMPSRC} \ 137 > ${.TARGET}.tmp 2>&1 \ 138 && status=$$? || status=$$?; \ 139 echo $$status > ${.TARGET:R}.status 140 @mv ${.TARGET}.tmp ${.TARGET} 141 142# Post-process the test output so that the results can be compared. 143# 144# always pretend .MAKE was called 'make' 145_SED_CMDS+= -e 's,^${TEST_MAKE:T:S,.,\\.,g}[][0-9]*:,make:,' 146_SED_CMDS+= -e 's,${TEST_MAKE:S,.,\\.,g},make,' 147# replace anything after 'stopped in' with unit-tests 148_SED_CMDS+= -e '/stopped/s, /.*, unit-tests,' 149# strip ${.CURDIR}/ from the output 150_SED_CMDS+= -e 's,${.CURDIR:S,.,\\.,g}/,,g' 151_SED_CMDS+= -e 's,${UNIT_TESTS:S,.,\\.,g}/,,g' 152 153.rawout.out: 154 @echo postprocess ${.TARGET} 155 @${TOOL_SED} ${_SED_CMDS} ${SED_CMDS.${.TARGET:R}} \ 156 < ${.IMPSRC} > ${.TARGET}.tmp1 157 @${POSTPROC.${.TARGET:R}:U${TOOL_SED}} < ${.TARGET}.tmp1 > ${.TARGET}.tmp2 158 @rm ${.TARGET}.tmp1 159 @echo "exit status `cat ${.TARGET:R}.status`" >> ${.TARGET}.tmp2 160 @mv ${.TARGET}.tmp2 ${.TARGET} 161 162# Compare all output files 163test: ${OUTFILES} .PHONY 164 @failed= ; \ 165 for test in ${TESTS}; do \ 166 diff -u ${UNIT_TESTS}/$${test}.exp $${test}.out \ 167 || failed="$${failed}$${failed:+ }$${test}" ; \ 168 done ; \ 169 if [ -n "$${failed}" ]; then \ 170 echo "Failed tests: $${failed}" ; false ; \ 171 else \ 172 echo "All tests passed" ; \ 173 fi 174 175accept: 176 @for test in ${TESTS}; do \ 177 cmp -s ${UNIT_TESTS}/$${test}.exp $${test}.out \ 178 || { echo "Replacing $${test}.exp" ; \ 179 cp $${test}.out ${UNIT_TESTS}/$${test}.exp ; } \ 180 done 181 182.if exists(${TEST_MAKE}) 183${TESTS:=.rawout}: ${TEST_MAKE} 184.endif 185 186.-include <bsd.obj.mk> 187