blob: 5b4e64adf78787f83de35c288e4bdad1a2cb770b (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# file : libbuild2/build/script/parser+diag.test.testscript
# license : MIT; see accompanying LICENSE file
test.options += -g
: name
:
$* test <<EOI >>EOO
echo abc
EOI
name: test
EOO
: name-deduce
:
$* <<EOI >>EOO
echo abc
EOI
name: echo
EOO
: diag
:
$* <<EOI >>~%EOO%
echo abc
cat abc
diag copy >= $>
cp <- $>
EOI
%diag: copy >= .+file\{driver\.\}%
EOO
: ambiguity
:
{
: name
:
$* test <<EOI 2>>EOE != 0
echo abc
diag xyz
EOI
buildfile:12:1: error: both low-verbosity script diagnostics name and 'diag' builtin call
buildfile:10: info: script name specified here
EOE
: diag
:
$* <<EOI 2>>EOE != 0
echo abc
diag abc
cat abc
diag xyz
EOI
buildfile:14:1: error: multiple 'diag' builtin calls
buildfile:12:1: info: previous call is here
EOE
}
: inside-if
:
$* <<EOI 2>>EOE != 0
if true
diag copy >= $>
fi
EOI
buildfile:12:3: error: 'diag' call inside flow control construct
EOE
: inside-if-cond
:
$* <<EOI 2>>EOE != 0
if diag copy >= $>
true
fi
EOI
buildfile:11:4: error: 'diag' call inside flow control construct
EOE
: second-command
:
$* <<EOI 2>>EOE != 0
true && diag copy >= $>
EOI
buildfile:11:9: error: 'diag' call must be the only command
EOE
: via-env
:
$* <<EOI 2>>EOE != 0
env -- diag copy >= $>
EOI
buildfile:11:8: error: 'diag' call via 'env' builtin
EOE
|