blob: 472cca7de8048099ffbc5cdd506658798e97869b (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# file : tests/manifest/task-response.test
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.options += -ts
: valid
:
: Roundtrip the task response manifest.
:
{
: session-not-empty
:
$* <<EOF >>EOF
: 1
session: abcd
challenge: xyz
:
name: libfoo
version: 1.0
repository: http://pkg.example.org/1/math
machine: windows_10-msvc_14
EOF
: session-empty
:
$* <<EOF >>EOF
: 1
session:
EOF
}
: redefinition
:
{
: session
:
$* <<EOI 2>'stdin:3:1: error: task response session redefinition' == 1
: 1
session: abcd
session: abcd
EOI
: challenge
:
$* <<EOI 2>'stdin:3:1: error: task response challenge redefinition' == 1
: 1
challenge: xyz
challenge: xyz
EOI
}
: invalid
:
{
: challenge
:
{
: empty
:
$* <<EOI 2>'stdin:2:11: error: empty task response challenge' == 1
: 1
challenge:
EOI
: redundant
:
$* <<EOI 2>'stdin:4:1: error: unexpected task response challenge' == 1
: 1
session:
challenge: abc
EOI
}
: task-unexpected
:
$* <<EOI 2>'stdin:3:1: error: single task response manifest expected' == 1
: 1
session:
:
EOI
}
: unknown-name
:
$* <<EOI 2>"stdin:2:1: error: unknown name 'x' in task response manifest" == 1
: 1
x:
EOI
: missed
:
{
: session
:
$* <<EOI 2>'stdin:2:1: error: no task response session specified' == 1
: 1
EOI
: challenge
:
$* <<EOI 2>'stdin:3:1: error: no task response challenge specified' == 1
: 1
session: abc
EOI
: task
:
$* <<EOI 2>'stdin:4:1: error: task manifest expected' == 1
: 1
session: abcd
challenge: xyz
EOI
}
|