2002-04-20 20:57:00 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2002-06-19 18:57:04 +00:00
|
|
|
# Test for broken LHS expansion.
|
|
|
|
# This *must* case make(1) to detect a recursive variable, and fail as such.
|
|
|
|
.if make(lhs_expn)
|
|
|
|
FOO= ${BAR}
|
|
|
|
BAR${NIL}= ${FOO}
|
|
|
|
FOO${BAR}= ${FOO}
|
|
|
|
.endif
|
|
|
|
|
2002-04-20 20:57:00 +00:00
|
|
|
DATA1= helllo
|
|
|
|
DATA2:= ${DATA1}
|
|
|
|
DATA3= ${DATA2:S/ll/rr/g}
|
|
|
|
DATA4:= ${DATA2:S/ll/rr/g}
|
|
|
|
DATA2?= allo
|
|
|
|
DATA5:= ${DATA2:S/ll/ii/g} ${DATA1:S/ll/rr/g}
|
|
|
|
DATA2= yello
|
|
|
|
DATA1:= ${DATA5:S/l/r/g}
|
2002-05-05 19:02:30 +00:00
|
|
|
NIL=
|
2002-04-20 20:57:00 +00:00
|
|
|
|
|
|
|
all:
|
|
|
|
@echo "Running test variables"
|
|
|
|
@echo 1:${DATA1} 2:${DATA2} 3:${DATA3} 4:${DATA4} 5:${DATA5} | \
|
|
|
|
diff -u ${.CURDIR}/regress.variables.out - || ${MAKE} failure
|
2002-04-27 02:26:23 +00:00
|
|
|
@echo "PASS: Test variables detected no regression, output matches."
|
2002-04-21 00:41:37 +00:00
|
|
|
@echo "Running test targets"
|
|
|
|
@${MAKE} double || ${MAKE} failure
|
2002-04-27 02:26:23 +00:00
|
|
|
@echo "PASS: Test targets detected no regression."
|
2002-05-05 19:02:30 +00:00
|
|
|
@echo "Running test sysvmatch"
|
|
|
|
@${MAKE} sysvmatch || ${MAKE} failure
|
|
|
|
@echo "PASS: Test sysvmatch detected no regression."
|
2002-06-19 18:57:04 +00:00
|
|
|
@echo "Running test lhs_expn"
|
2002-06-20 03:08:20 +00:00
|
|
|
@! ${MAKE} lhs_expn && true || ${MAKE} failure
|
2002-06-19 18:57:04 +00:00
|
|
|
@echo "PASS: Test lhs_expn detected no regression."
|
2002-04-21 00:41:37 +00:00
|
|
|
|
|
|
|
# Doubly-defined targets. NetBSD make(1) will warn, ours will silently use the
|
|
|
|
# ``right'' one.
|
|
|
|
double:
|
|
|
|
@true
|
|
|
|
|
|
|
|
double:
|
|
|
|
@false
|
2002-04-20 20:57:00 +00:00
|
|
|
|
2002-05-05 19:02:30 +00:00
|
|
|
# Some versions of FreeBSD make(1) do not handle a nil LHS in sysvsubst.
|
|
|
|
sysvmatch:
|
|
|
|
@echo EMPTY ${NIL:=foo} LHS | \
|
|
|
|
diff -u ${.CURDIR}/regress.sysvmatch.out - || false
|
|
|
|
|
2002-06-19 18:57:04 +00:00
|
|
|
# A bogus target for the lhs_expn test; If this is reached, then the make(1)
|
|
|
|
# program has not errored out because of the recursion caused by not expanding
|
|
|
|
# the left-hand-side's embedded variables above.
|
|
|
|
lhs_expn:
|
2002-06-20 03:08:20 +00:00
|
|
|
@true
|
2002-06-19 18:57:04 +00:00
|
|
|
|
2002-04-20 20:57:00 +00:00
|
|
|
failure:
|
2002-04-27 02:26:23 +00:00
|
|
|
@echo "FAIL: Test failed: regression detected. See above."
|
2002-04-20 20:57:00 +00:00
|
|
|
@false
|