summaryrefslogtreecommitdiff
path: root/tests/scripts/variables/DEFAULT_TARGET
blob: d8f117390c6b42973bda20bc02e7233a7b2db08a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#                                                                    -*-perl-*-
$description = "Test the .DEFAULT_TARGET special variable.";

$details = "";


# Test #1: basic logic.
#
run_make_test('
# Basics.
#
foo: ; @:

ifneq ($(.DEFAULT_TARGET),foo)
$(error )
endif

# Reset to empty.
#
.DEFAULT_TARGET :=

bar: ; @:

ifneq ($(.DEFAULT_TARGET),bar)
$(error )
endif

# Change to a different target.
#

.DEFAULT_TARGET := baz

baz: ; @echo $@
',
'',
'baz');


# Test #2: unknown target.
#
run_make_test('
.DEFAULT_TARGET := foo
',
'',
'make: *** No rule to make target `foo\'.  Stop.',
512);


# Test #3: more than one target.
#
run_make_test('
.DEFAULT_TARGET := foo bar
',
'',
'make: *** .DEFAULT_TARGET contains more than one target.  Stop.',
512);


# Test #4: Savannah bug #12226.
#
run_make_test('
define rule
foo: ; @echo $$@
endef

define make-rule
$(eval $(rule))
endef

$(call make-rule)

',
'',
'foo');


# This tells the test driver that the perl test script executed properly.
1;