1# $FreeBSD$ 2 3.MAKE.MODE= normal 4 5# Test for broken LHS expansion. 6# This *must* cause make(1) to detect a recursive variable, and fail as such. 7.if make(lhs_expn) 8FOO= ${BAR} 9BAR${NIL}= ${FOO} 10FOO${BAR}= ${FOO} 11.endif 12 13DATA1= helllo 14DATA2:= ${DATA1} 15DATA3= ${DATA2:S/ll/rr/g} 16DATA4:= ${DATA2:S/ll/rr/g} 17DATA2?= allo 18DATA5:= ${DATA2:S/ll/ii/g} ${DATA1:S/ll/rr/g} 19DATA2= yello 20DATA1:= ${DATA5:S/l/r/g} 21NIL= 22 23SMAKE= MAKEFLAGS= ${MAKE} -C ${.CURDIR} 24 25all: 26 @echo '1..16' 27 @${SMAKE} C_check || { cd ${.CURDIR} ; ${MAKE} failure ; } 28 @echo "ok 1 - C_check # Test of -C flag existence detected no regression." 29 @echo 1:${DATA1} 2:${DATA2} 3:${DATA3} 4:${DATA4} 5:${DATA5} | \ 30 diff -u ${.CURDIR}/regress.variables.out - || \ 31 ${SMAKE} failure 32 @echo "ok 2 - test_variables # Test variables detected no regression, output matches." 33 @${SMAKE} double 2>/dev/null || ${SMAKE} failure 34 @echo "ok 3 - test_targets # Test targets detected no regression." 35 @${SMAKE} sysvmatch || ${SMAKE} failure 36 @echo "ok 4 - sysvmatch # Test sysvmatch detected no regression." 37 @! ${SMAKE} lhs_expn && true || ${SMAKE} failure 38 @echo "ok 5 lhs_expn # Test lhs_expn detected no regression." 39 @${SMAKE} notdef || ${SMAKE} failure 40 @echo "ok 6 - notdef # Test notdef detected no regression." 41 @${SMAKE} modifiers || ${SMAKE} failure 42 @echo "ok 7 - modifiers # Test modifiers detected no regression." 43 @${SMAKE} arith_expr || ${SMAKE} failure 44 @echo "ok 8 arith_expr # Test arith_expr detected no regression." 45 @${SMAKE} PATH_exists || ${SMAKE} failure 46 @echo "ok 9 PATH_exists # Test PATH_exists detected no regression." 47 @${SMAKE} double_quotes || ${SMAKE} failure 48 @echo "ok 10 double_quotes # Test double_quotes detected no regression." 49 @! ${SMAKE} double_quotes2 >/dev/null 2>&1 && true || ${SMAKE} failure 50 @echo "ok 11 double_quotes2 # Test double_quotes2 detected no regression." 51 @${SMAKE} pass_cmd_vars || ${SMAKE} failure 52 @echo "ok 12 pass_cmd_vars # Test pass_cmd_vars detected no regression." 53 @${SMAKE} plus_flag || ${SMAKE} failure 54 @echo "ok 13 plus_flag # Test plus_flag detected no regression." 55 @! ${SMAKE} shell >/dev/null 2>&1 && true || ${SMAKE} failure 56 @echo "ok 14 shell # Test shell detected no regression." 57 @${SMAKE} shell_1 || ${SMAKE} failure 58 @echo "ok 15 shell_1 # Test shell_1 detected no regression." 59 @${SMAKE} shell_2 || ${SMAKE} failure 60 @echo "ok 16 shell_2 # Test shell_2 detected no regression." 61 62.if make(C_check) 63C_check: 64.endif 65 66.if make(double) 67# Doubly-defined targets. make(1) will warn, but use the "right" one. If it 68# switches to using the "non-right" one, it breaks things worse than a little 69# regression test. 70double: 71 @true 72 73double: 74 @false 75.endif 76 77.if make(sysvmatch) 78# Some versions of FreeBSD make(1) do not handle a nil LHS in sysvsubst. 79sysvmatch: 80 @echo EMPTY ${NIL:=foo} LHS | \ 81 diff -u ${.CURDIR}/regress.sysvmatch.out - || false 82.endif 83 84# A bogus target for the lhs_expn test; If this is reached, then the make(1) 85# program has not errored out because of the recursion caused by not expanding 86# the left-hand-side's embedded variables above. 87lhs_expn: 88 @true 89 90.if make(notdef) 91# make(1) claims to only evaluate a conditional as far as is necessary 92# to determine its value; that was not always the case. 93.undef notdef 94notdef: 95.if defined(notdef) && ${notdef:U} 96.endif 97.endif 98 99.if make(modifiers) 100# See if make(1) supports the C modifier. 101modifiers: 102 @if ${SMAKE} -V .CURDIR:C/.// 2>&1 >/dev/null | \ 103 grep -q "Unknown modifier 'C'"; then \ 104 false; \ 105 fi 106.endif 107 108.if make(arith_expr) 109arith_expr: 110# See if arithmetic expression parsing is broken. 111# The different spacing below is intentional. 112VALUE= 0 113.if (${VALUE} < 0)||(${VALUE}>0) 114.endif 115.endif 116 117.if make(PATH_exists) 118PATH_exists: 119.PATH: ${.CURDIR} 120.if !exists(${.CURDIR}/) || !exists(${.CURDIR}/.) || !exists(${.CURDIR}/..) 121.error exists() failed 122.endif 123.endif 124 125.if make(double_quotes) 126VALUE= foo "" 127double_quotes: 128.if ${VALUE:S/$//} != ${VALUE} 129.error "" reduced to " 130.endif 131.endif 132 133.if make(double_quotes2) 134double_quotes2: 135 @cat /dev/null "" 136.endif 137 138# 139# Check passing of variable via MAKEFLAGS 140# 141.if make(pass_cmd_vars) 142pass_cmd_vars: 143 @${SMAKE} CMD1=cmd1 CMD2=cmd2 pass_cmd_vars_1 144 @${SMAKE} CMD1=cmd1 CMD2=cmd2 pass_cmd_vars_2 145 @${SMAKE} CMD1=cmd1 CMD2=cmd2 pass_cmd_vars_3 146 @${SMAKE} CMD1=cmd1 CMD2=cmd2 pass_cmd_vars_4 147.endif 148 149# 150# Check that the variable definition arrived from the calling make 151# 152.if make(pass_cmd_vars_1) 153# These values should get overridden by the commandline 154CMD1=oops1 155CMD2=oops2 156pass_cmd_vars_1: 157 @: 158 159.if ${CMD1} != cmd1 || ${CMD2} != cmd2 160.error variables not passed through MAKEFLAGS 161.endif 162.endif 163 164.if make(pass_cmd_vars_2) 165# Check that we cannot override the passed variables 166CMD1=foo1 167CMD2=foo2 168 169.if ${CMD1} != cmd1 || ${CMD2} != cmd2 170.error MAKEFLAGS-passed variables overridden 171.endif 172 173pass_cmd_vars_2: 174 @: 175.endif 176 177.if make(pass_cmd_vars_3) 178# Check that we can override the passed variables on the next sub-make's 179# command line 180 181pass_cmd_vars_3: 182 @${SMAKE} CMD1=foo1 pass_cmd_vars_3_1 183.endif 184 185.if make(pass_cmd_vars_3_1) 186.if ${CMD1} != foo1 || ${CMD2} != cmd2 187.error MAKEFLAGS-passed variables not overridden on command line 188.endif 189pass_cmd_vars_3_1: 190 @: 191.endif 192 193.if make(pass_cmd_vars_4) 194# Ensure that a variable assignment passed via MAKEFLAGS may be overwritten 195# by evaluating the .MAKEFLAGS target. 196 197.MAKEFLAGS: CMD1=baz1 198 199pass_cmd_vars_4: 200 @${SMAKE} pass_cmd_vars_4_1 201 202.if ${CMD1} != baz1 || ${CMD2} != cmd2 203.error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target 204.endif 205 206.endif 207.if make(pass_cmd_vars_4_1) 208.if ${CMD1} != baz1 || ${CMD2} != cmd2 209.error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target (2) 210.endif 211pass_cmd_vars_4_1: 212 @: 213.endif 214 215# 216# Test whether make supports the '+' flag (meaning: execute even with -n) 217# 218.if make(plus_flag) 219OUT != ${SMAKE} -n plus_flag_1 220.if ${OUT:M/tmp} != "/tmp" 221.error make doesn't handle + flag 222.endif 223plus_flag: 224 @: 225.endif 226.if make(plus_flag_1) 227plus_flag_1: 228 +@cd /tmp; pwd 229.endif 230 231.if make(shell) 232# Test if make fully supports the .SHELL specification. 233.SHELL: path=/nonexistent 234A!= echo ok 235shell: 236.endif 237 238.if make(shell_1) 239# Test if setting the shell by name only works. Because we have no ksh 240# in the base system we test that we can set sh and csh. We try only exact 241# matching names and do not exercise the rather strange matching algorithm. 242shell_1: 243 @${SMAKE} shell_1_csh 244 @${SMAKE} shell_1_sh 245.endif 246.if make(shell_1_csh) 247.SHELL: name="csh" 248shell_1_csh: 249 @ps -ax -opid,command | awk '$$1=="'$$$$'" { print $$2 }' | grep -E -q '^(/bin/)?csh$$' 250.endif 251.if make(shell_1_sh) 252.SHELL: name="sh" 253shell_1_sh: 254 @ps -ax -opid,command | awk '$$1=="'$$$$'" { print $$2 }' | grep -E -q '^(/bin/)?sh$$' 255.endif 256 257.if make(shell_2) 258# Test if we can replace the shell specification. We do this by using 259# a shell scripts that prints us its arguments and standard input as the shell 260shell_2: shell_test 261 @${SMAKE} -B shell_2B | \ 262 diff -u ${.CURDIR}/regress.shell_2B.out - || false 263 @${SMAKE} -j1 shell_2j | \ 264 diff -u ${.CURDIR}/regress.shell_2j.out - || false 265.endif 266 267.if make(shell_2B) 268.SHELL: name="echo" path="${.OBJDIR}/shell_test" quiet="be quiet" echo="be verbose" filter="be verbose" echoFlag="x" errFlag="y" hasErrCtl=y check="check errors" ignore="ignore errors" 269 270shell_2B: 271 -@funny $$ 272 funnier $$ 273.endif 274 275.if make(shell_2j) 276.SHELL: name="echo" path="${.OBJDIR}/shell_test" quiet="be quiet" echo="be verbose" filter="be verbose" echoFlag="x" errFlag="y" hasErrCtl=y check="check errors" ignore="ignore errors" 277 278shell_2j: 279 -@funny $$ 280 funnier $$ 281.endif 282 283failure: 284 @echo "not ok # Test failed: regression detected. See above." 285 @false 286 287CLEANFILES= shell_test 288 289.include <bsd.obj.mk> 290