blob: 673b41f44009507d3a2de7fe2e172e78d3e44c6a [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 \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050013 function2 \
14 fwupd \
15 gcab \
16 jq \
17 leveldb \
18 libcereal \
19 libee \
Patrick Williamsb58112e2024-03-07 11:16:36 -060020 libgpiod \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050021 libio-pty-perl \
22 libmanette \
Andrew Geissler5082cc72023-09-11 08:41:39 -040023 librelp \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050024 libssh \
25 libtinyxml2 \
26 libxml++-5.0 \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050027 libyang \
28 lmdb \
Patrick Williams03514f12024-04-05 07:04:11 -050029 microsoft-gsl \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050030 minicoredumper \
31 neon \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060032 nlohmann-json \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050033 nodejs \
34 onig \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050035 protobuf \
36 sdbus-c++ \
37 uthash \
38 xmlsec1 \
39 zeromq \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060040 cjson \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050041"
Andrew Geissler8f840682023-07-21 09:09:43 -050042PTESTS_FAST_META_OE:append:x86 = " mcelog"
43PTESTS_FAST_META_OE:append:x86-64 = " mcelog"
44
Patrick Williams8e7b46e2023-05-01 14:19:06 -050045PTESTS_FAST_META_OE:remove:libc-musl = "minicoredumper"
Patrick Williamse760df82023-05-26 11:10:49 -050046PTESTS_FAST_META_OE:remove:riscv64 = "nodejs"
47PTESTS_FAST_META_OE:remove:riscv32 = "nodejs"
Patrick Williams8e7b46e2023-05-01 14:19:06 -050048
49PTESTS_SLOW_META_OE = "\
Patrick Williams705982a2024-01-12 09:51:57 -060050 c-ares \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050051 fftw \
52 libusb-compat \
53 rsyslog \
Andrew Geissler220dafd2023-10-04 10:18:08 -050054 mariadb \
Patrick Williamsda295312023-12-05 16:48:56 -060055 poco \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060056 re2 \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050057"
Andrew Geissler20137392023-10-12 04:59:14 -060058PTESTS_SLOW_META_OE:append:x86 = " kernel-selftest"
59PTESTS_SLOW_META_OE:append:x86-64 = " kernel-selftest"
60PTESTS_SLOW_META_OE:remove:libc-musl = "kernel-selftest"
Patrick Williams8e7b46e2023-05-01 14:19:06 -050061
62PTESTS_PROBLEMS_META_OE ="\
63 jemalloc \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050064 keyutils \
65 libdbi-perl \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050066 libjcat \
67 libteam \
68 libxml++ \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050069 oprofile \
70 ostree \
71 psqlodbc \
72 pv \
73"
Patrick Williams39653562024-03-01 08:54:02 -060074
75PTESTS_PROBLEMS_META_OE:remove:riscv64 = "oprofile"
76PTESTS_PROBLEMS_META_OE:remove:riscv32 = "oprofile"