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