VirtualBox

source: kBuild/vendor/gnumake/3.82-cvs/tests/scripts/variables/flavors@ 2580

Last change on this file since 2580 was 2580, checked in by bird, 13 years ago

Importing the make-3-82 CVS tag with --auto-props but no keywords.

File size: 1.1 KB
Line 
1# -*-perl-*-
2
3$description = "Test various flavors of make variable setting.";
4
5$details = "";
6
7# TEST 0: Recursive
8
9run_make_test('
10ugh = Goodbye
11foo = $(bar)
12bar = ${ugh}
13ugh = Hello
14all: ; @echo $(foo)
15',
16 '', "Hello\n");
17
18# TEST 1: Simple
19
20run_make_test('
21bar = Goodbye
22foo := $(bar)
23bar = ${ugh}
24ugh = Hello
25all: ; @echo $(foo)
26',
27 '', "Goodbye\n");
28
29# TEST 2: Append to recursive
30
31run_make_test('
32foo = Hello
33ugh = Goodbye
34foo += $(bar)
35bar = ${ugh}
36ugh = Hello
37all: ; @echo $(foo)
38',
39 '', "Hello Hello\n");
40
41# TEST 3: Append to simple
42
43run_make_test('
44foo := Hello
45ugh = Goodbye
46bar = ${ugh}
47foo += $(bar)
48ugh = Hello
49all: ; @echo $(foo)
50',
51 '', "Hello Goodbye\n");
52
53# TEST 4: Conditional pre-set
54
55run_make_test('
56foo = Hello
57ugh = Goodbye
58bar = ${ugh}
59foo ?= $(bar)
60ugh = Hello
61all: ; @echo $(foo)
62',
63 '', "Hello\n");
64
65# TEST 5: Conditional unset
66
67run_make_test('
68ugh = Goodbye
69bar = ${ugh}
70foo ?= $(bar)
71ugh = Hello
72all: ; @echo $(foo)
73',
74 '', "Hello\n");
75
761;
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette