Changeset 2596 in kBuild for vendor/gnumake/current/tests/scripts/features/patspecific_vars
- Timestamp:
- Jun 19, 2012 10:44:52 PM (12 years ago)
- Location:
- vendor/gnumake/current
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
tests (modified) (1 prop)
-
tests/scripts/features/patspecific_vars (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current
- Property svn:ignore deleted
-
vendor/gnumake/current/tests
- Property svn:ignore deleted
-
vendor/gnumake/current/tests/scripts/features/patspecific_vars
-
Property svn:eol-style
changed from
nativetoLF
r501 r2596 121 121 pattrn: global: new $t pattern: good $t inherit: good $t;'); 122 122 123 # TEST #8: override in pattern-specific variables 124 125 run_make_test(' 126 a%: override FOO += f1 127 a%: FOO += f2 128 ab: ; @echo "$(FOO)" 129 ', 130 '', "f1\n"); 131 132 run_make_test(undef, 'FOO=C', "C f1\n"); 133 134 # TEST #9: Test shortest stem selection in pattern-specific variables. 135 136 run_make_test(' 137 %-mt.x: x := two 138 %.x: x := one 139 140 all: foo.x foo-mt.x 141 142 foo.x: ;@echo $x 143 foo-mt.x: ;@echo $x 144 ', 145 '', 146 "one\ntwo"); 123 147 124 148 1; -
Property svn:eol-style
changed from
Note:
See TracChangeset
for help on using the changeset viewer.

