aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/build/script/parser+variable.test.testscript
blob: 5040e668bef26e3c758390b6464756d82655f626 (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
# file      : libbuild2/build/script/parser+variable.test.testscript
# license   : MIT; see accompanying LICENSE file

: assignment
:
$* <<EOI >>EOO
a = b
echo $a
EOI
echo b
EOO

: primary-target
:
$* <<EOI >>EOO
echo $name($>)
EOI
echo driver
EOO

: no-newline
:
$* <:'echo a' 2>>EOE != 0
buildfile:11:7: error: expected newline instead of <end of file>
EOE

: set-primary-target
:
$* <<EOI 2>>EOE != 0
> = a
EOI
buildfile:11:1: error: missing program
EOE

: empty-name
:
$* <<EOI 2>>EOE != 0
= b
EOI
buildfile:11:1: error: missing variable name
EOE