1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/build/pymake/tests/foreach-local-variable.mk Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,8 @@ 1.4 +# This test ensures that a local variable in a $(foreach) is bound to 1.5 +# the local value, not a global value. 1.6 +i := dummy 1.7 + 1.8 +all: 1.9 + test "$(foreach i,foo bar,found:$(i))" = "found:foo found:bar" 1.10 + test "$(i)" = "dummy" 1.11 + @echo TEST-PASS