blob: 5bf6b241d69821f1b267387facc8c930e3b4cede (
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
|
# file : tests/buildtab/testscript
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: valid
:
: Roundtrip buildtab.
:
{
: all-fileds-combinations
:
$* <<EOF >>EOF
windows*-vc_14* windows-vc_14
windows*-vc_14* windows-vc_14-32 i686-microsoft-win32-msvc14.0
windows*-vc_14* windows-vc_14debug config.cc.coptions=/Z7 config.cc.loptions=/DEBUG
windows*-vc_14* windows-vc_14-32-debug i686-microsoft-win32-msvc14.0 config.cc.coptions=/Z7 config.cc.loptions=/DEBUG
EOF
: empty-lines
:
$* <<EOI >>EOO
windows*-vc_14* windows-vc_14-32-debug
# abc
EOI
windows*-vc_14* windows-vc_14-32-debug
EOO
}
: parse-errors
:
{
: no-name
:
$* <<EOI 2>>EOE == 1
windows*-vc_14*
EOI
cin:1:16: error: no configuration name found
EOE
: invalid-target
:
$* <<EOI 2>>EOE == 1
windows*-vc_14* windows-vc_14-32 microsoft
EOI
cin:1:34: error: missing cpu
EOE
: invalid-var
:
$* <<EOI 2>>EOE == 1
windows*-vc_14* windows-vc_14-32 config.cc.coptions="/Z7
EOI
cin:1:57: error: unterminated quoted string
EOE
: dup-config-name
:
$* <<EOI 2>'cin:2:17: error: duplicate configuration name' == 1
windows*-vc_14* windows-vc_14-32
windows*-vc_14* windows-vc_14-32 i686-microsoft-win32-msvc14.0
EOI
}
|