blob: 85c03501614736e9175636629f9c08ad641f24a3 (
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
#
# Lists of the ptests in OE-Core, sorted into two sets by the time they take
#
# ptests which take less than ~30s each
#
PTESTS_FAST = "\
acl \
apr-util \
attr \
babeltrace \
babeltrace2 \
bc \
bluez5 \
busybox \
cpio \
diffstat \
diffutils \
ethtool \
expat \
expect \
findutils \
flex \
gawk \
gdbm \
gdk-pixbuf \
glib-networking \
gzip \
icu \
json-c \
json-glib \
libconvert-asn1-perl \
libexif \
libgpg-error\
libnl \
libpcre \
libssh2 \
libtest-fatal-perl \
libtest-needs-perl \
libtest-warnings-perl \
libtimedate-perl \
libtry-tiny-perl \
libusb1 \
libxml-namespacesupport-perl \
libxml-parser-perl \
libxml-perl \
libxml-sax-base-perl \
libxml-sax-perl \
libxml-simple-perl \
libxml2 \
libxmlb \
logrotate \
lua \
lzo \
m4 \
nettle \
opkg \
popt \
python3-atomicwrites \
python3-attrs \
python3-bcrypt \
python3-calver \
python3-hypothesis \
python3-idna \
python3-jinja2 \
python3-jsonpointer \
python3-libarchive-c \
python3-license-expression \
python3-mako \
python3-markupsafe \
python3-more-itertools \
python3-packaging \
python3-pluggy \
python3-pefile \
python3-pyasn1 \
python3-pytz \
python3-pyyaml \
python3-rpds-py \
python3-trove-classifiers \
python3-uritools \
python3-wcwidth \
python3-webcolors \
python3-wheel \
qemu \
quilt \
rpm-sequoia \
sed \
slang \
wayland \
xz \
zlib \
"
PTESTS_FAST:remove:mips64 = "qemu"
PTESTS_PROBLEMS:append:mips64 = " qemu"
PTESTS_FAST:remove:riscv32 = "qemu"
PTESTS_PROBLEMS:append:riscv32 = " qemu"
PTESTS_SLOW = "\
apr \
bzip2 \
coreutils \
curl \
dbus \
dosfstools \
e2fsprogs \
elfutils \
gettext \
glib-2.0 \
gnutls \
gstreamer1.0 \
less \
libevent \
libgcrypt \
libmodule-build-perl \
libpng \
libseccomp \
lttng-tools \
lz4 \
openssh \
openssl \
parted \
perl \
python3 \
python3-cffi \
python3-click \
python3-cryptography \
python3-numpy \
python3-xmltodict \
strace \
tar \
tcl \
tcl8 \
util-linux \
"
# python3 ptests hang on qemuriscv64
PTESTS_SLOW:remove:riscv64 = "python3"
PTESTS_PROBLEMS:append:riscv64 = " python3"
PTESTS_SLOW:remove:riscv32 = "lttng-tools strace "
PTESTS_PROBLEMS:append:riscv32 = " lttng-tools strace"
PTESTS_SLOW:append:libc-musl = " libc-test"
# These tests don't yet pass for riscv64
PTESTS_SLOW:remove:riscv64 = "tcl tcl8 python3-cffi strace lttng-tools python3-numpy perl"
PTESTS_PROBLEMS:append:riscv64 = " tcl tcl8 python3-cffi strace lttng-tools python3-numpy perl"
# ruby \ # Timeout
# rt-tests \ # Needs to be checked whether it runs at all
# bash \ # Test outcomes are non-deterministic by design
# ifupdown \ # Tested separately in lib/oeqa/selftest/cases/imagefeatures.py
# libinput \ # Tests need an unloaded system to be reliable
# libpam \ # Needs pam DISTRO_FEATURE
# mdadm \ # tests are flaky in AB.
# numactl \ # qemu not (yet) configured for numa; all tests are skipped
PTESTS_PROBLEMS = "\
ruby \
rt-tests \
bash \
ifupdown \
libinput \
libpam \
mdadm \
numactl \
python3-license-expression \
"
|