blob: 77dace08a03b3f1f4a135efb3c4fcaaf92d9458e [file] [log] [blame]
Patrick Williams8e7b46e2023-05-01 14:19:06 -05001#
2# Lists of the ptest in meta-oe, sorted into two sets by the time they take
3# Please keep these sorted in alphabetical order
4#
5# A first pass at getting all meta-oe recipes which inherit ptest
6# meta_oe_ptest_recipes=$(bitbake-layers show-recipes --recipes-only --layer meta-oe --inherits ptest --bare | tr '\n' ' ' | pcregrep -o1 '^NOTE:.+===(.+)$')
7#
8# ptests which take less than ~30s each
9PTESTS_FAST_META_OE = "\
10 cmocka \
11 cunit \
12 duktape \
13 fmt \
14 function2 \
15 fwupd \
16 gcab \
17 jq \
18 leveldb \
19 libcereal \
20 libee \
21 libio-pty-perl \
22 libmanette \
23 libssh \
24 libtinyxml2 \
25 libxml++-5.0 \
26 libxmlb \
27 libyang \
28 lmdb \
29 minicoredumper \
30 neon \
31 nodejs \
32 onig \
33 poco \
34 protobuf \
35 sdbus-c++ \
36 uthash \
37 xmlsec1 \
38 zeromq \
39"
Andrew Geissler8f840682023-07-21 09:09:43 -050040PTESTS_FAST_META_OE:append:x86 = " mcelog"
41PTESTS_FAST_META_OE:append:x86-64 = " mcelog"
42
Patrick Williams8e7b46e2023-05-01 14:19:06 -050043PTESTS_FAST_META_OE:remove:libc-musl = "minicoredumper"
Patrick Williamse760df82023-05-26 11:10:49 -050044PTESTS_FAST_META_OE:remove:riscv64 = "nodejs"
45PTESTS_FAST_META_OE:remove:riscv32 = "nodejs"
Patrick Williams8e7b46e2023-05-01 14:19:06 -050046
47PTESTS_SLOW_META_OE = "\
48 fftw \
49 libusb-compat \
50 rsyslog \
51"
52
53PTESTS_PROBLEMS_META_OE ="\
54 jemalloc \
55 kernel-selftest \
56 keyutils \
57 libdbi-perl \
58 libgpiod \
59 libjcat \
60 libteam \
61 libxml++ \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050062 oprofile \
63 ostree \
64 psqlodbc \
65 pv \
66"