aboutsummaryrefslogtreecommitdiff
path: root/tools/regression
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-06-19 18:57:04 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-06-19 18:57:04 +0000
commit0aa9e01c51d794a7962aa9b6eef75ec2e0390f7d (patch)
tree5297262e6d190edd8151bbe7c40dd566e9dce872 /tools/regression
parentfe36b03b4c39a021c9f6b5cdc8c89e8170980885 (diff)
Notes
Diffstat (limited to 'tools/regression')
-rw-r--r--tools/regression/usr.bin/make/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/regression/usr.bin/make/Makefile b/tools/regression/usr.bin/make/Makefile
index 14708b35b951..f92febc48fe2 100644
--- a/tools/regression/usr.bin/make/Makefile
+++ b/tools/regression/usr.bin/make/Makefile
@@ -1,5 +1,13 @@
# $FreeBSD$
+# 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
+
DATA1= helllo
DATA2:= ${DATA1}
DATA3= ${DATA2:S/ll/rr/g}
@@ -21,6 +29,9 @@ all:
@echo "Running test sysvmatch"
@${MAKE} sysvmatch || ${MAKE} failure
@echo "PASS: Test sysvmatch detected no regression."
+ @echo "Running test lhs_expn"
+ @${MAKE} lhs_expn || ${MAKE} failure
+ @echo "PASS: Test lhs_expn detected no regression."
# Doubly-defined targets. NetBSD make(1) will warn, ours will silently use the
# ``right'' one.
@@ -35,6 +46,12 @@ sysvmatch:
@echo EMPTY ${NIL:=foo} LHS | \
diff -u ${.CURDIR}/regress.sysvmatch.out - || false
+# 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:
+ @false
+
failure:
@echo "FAIL: Test failed: regression detected. See above."
@false