blob: 76db80e6d0e3c5aee9f166a1546e56a8564727f4 (
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
|
# Architecture: all
host_arch='amd64-linux-glibc'
arches='all'
result='false'
testcase
host_arch='i686-linux-glibc'
arches='all'
result='false'
testcase
host_arch='all'
arches='all'
result='true'
testcase
# Architecture: any
host_arch='amd64-linux-glibc'
arches='any'
result='true'
testcase
host_arch='i686-linux-glibc'
arches='any'
result='true'
testcase
host_arch='all'
arches='any'
result='false'
testcase
# Architecture: amd64-linux-glibc
host_arch='amd64-linux-glibc'
arches='amd64-linux-glibc'
result='true'
testcase
host_arch='i686-linux-glibc'
arches='amd64-linux-glibc'
result='false'
testcase
host_arch='all'
arches='amd64-linux-glibc'
result='false'
testcase
# Architecture: !amd64-linux-glibc
host_arch='amd64-linux-glibc'
arches='!amd64-linux-glibc'
result='false'
testcase
host_arch='i686-linux-glibc'
arches='!amd64-linux-glibc'
result='true'
testcase
host_arch='all'
arches='!amd64-linux-glibc'
result='false'
testcase
|