comparison: build/pymake/tests/foreach-local-variable.mk
build/pymake/tests/foreach-local-variable.mk
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
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 |