mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
d4e75e2bbd
The tests are executing and passing fine using glibc. It takes a bit more than 5 minutes to run them. When using musl, the timezone tests fail due to the different ways glibc and musl handle posix timezones. It have been reported upstream: https://jira.mariadb.org/browse/MDEV-38029 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
84 lines
1.8 KiB
PHP
84 lines
1.8 KiB
PHP
#
|
|
# Lists of the ptest in meta-oe, sorted into two sets by the time they take
|
|
# Please keep these sorted in alphabetical order
|
|
#
|
|
# A first pass at getting all meta-oe recipes which inherit ptest
|
|
# meta_oe_ptest_recipes=$(bitbake-layers show-recipes --recipes-only --layer meta-oe --inherits ptest --bare | tr '\n' ' ' | pcregrep -o1 '^NOTE:.+===(.+)$')
|
|
#
|
|
# ptests which take less than ~30s each
|
|
PTESTS_FAST_META_OE = "\
|
|
asio \
|
|
cli11 \
|
|
cmocka \
|
|
cunit \
|
|
duktape \
|
|
fuse3 \
|
|
function2 \
|
|
fwupd \
|
|
gcab \
|
|
imagemagick \
|
|
jemalloc \
|
|
jq \
|
|
leveldb \
|
|
libcereal \
|
|
libdbi-perl \
|
|
libgpiod \
|
|
libjcat \
|
|
libio-pty-perl \
|
|
libmanette \
|
|
librelp \
|
|
libssh \
|
|
libteam \
|
|
libtinyxml2 \
|
|
libtoml11 \
|
|
libxml++-5.0 \
|
|
libyang \
|
|
lmdb \
|
|
mbedtls \
|
|
microsoft-gsl \
|
|
minicoredumper \
|
|
minizip-ng \
|
|
neon \
|
|
nlohmann-json \
|
|
nodejs \
|
|
onig \
|
|
oprofile \
|
|
pegtl \
|
|
protobuf \
|
|
pv \
|
|
sdbus-c++ \
|
|
tomlplusplus \
|
|
utf8proc \
|
|
uthash \
|
|
xmlsec1 \
|
|
zeromq \
|
|
cjson \
|
|
"
|
|
PTESTS_FAST_META_OE:append:x86 = " mcelog"
|
|
PTESTS_FAST_META_OE:append:x86-64 = " mcelog"
|
|
|
|
PTESTS_FAST_META_OE:remove:libc-musl = "jemalloc minicoredumper oprofile"
|
|
PTESTS_FAST_META_OE:remove:riscv64 = "nodejs oprofile"
|
|
PTESTS_FAST_META_OE:remove:riscv32 = "nodejs oprofile"
|
|
|
|
PTESTS_SLOW_META_OE = "\
|
|
c-ares \
|
|
fftw \
|
|
libusb-compat \
|
|
mariadb \
|
|
rocksdb \
|
|
re2 \
|
|
"
|
|
PTESTS_SLOW_META_OE:append:x86 = " kernel-selftest"
|
|
PTESTS_SLOW_META_OE:append:x86-64 = " kernel-selftest"
|
|
PTESTS_SLOW_META_OE:remove:libc-musl = "kernel-selftest mariadb"
|
|
|
|
PTESTS_PROBLEMS_META_OE = "\
|
|
keyutils \
|
|
ostree \
|
|
poco \
|
|
psqlodbc \
|
|
rsyslog \
|
|
"
|
|
PTESTS_PROBLEMS_META_OE:append:libc-musl = " jemalloc minicoredumper oprofile mariadb"
|