build/pymake/tests/foreach-local-variable.mk

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:d09ab8b3f1bb
1 # This test ensures that a local variable in a $(foreach) is bound to
2 # the local value, not a global value.
3 i := dummy
4
5 all:
6 test "$(foreach i,foo bar,found:$(i))" = "found:foo found:bar"
7 test "$(i)" = "dummy"
8 @echo TEST-PASS

mercurial