blob: 76b2a23d5faf694f1c34ea10c6582d13b5c44852 (
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
|
# -*-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 #2: more than one target.
#
run_make_test('
.DEFAULT_TARGET := foo bar
',
'',
'make: *** .DEFAULT_TARGET contains more than one target. Stop.',
512);
# This tells the test driver that the perl test script executed properly.
1;
|