1# 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 mcelog \ 30 minicoredumper \ 31 neon \ 32 nodejs \ 33 onig \ 34 poco \ 35 protobuf \ 36 sdbus-c++ \ 37 uthash \ 38 xmlsec1 \ 39 zeromq \ 40" 41PTESTS_FAST_META_OE:remove:libc-musl = "minicoredumper" 42PTESTS_FAST_META_OE:remove:riscv64 = "nodejs" 43PTESTS_FAST_META_OE:remove:riscv32 = "nodejs" 44 45PTESTS_SLOW_META_OE = "\ 46 fftw \ 47 libusb-compat \ 48 rsyslog \ 49" 50 51PTESTS_PROBLEMS_META_OE ="\ 52 jemalloc \ 53 kernel-selftest \ 54 keyutils \ 55 libdbi-perl \ 56 libgpiod \ 57 libjcat \ 58 libteam \ 59 libxml++ \ 60 oprofile \ 61 ostree \ 62 psqlodbc \ 63 pv \ 64" 65