Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame^] | 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 |
| 9 | PTESTS_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 | " |
| 40 | PTESTS_FAST_META_OE:remove:libc-musl = "minicoredumper" |
| 41 | |
| 42 | PTESTS_SLOW_META_OE = "\ |
| 43 | fftw \ |
| 44 | libusb-compat \ |
| 45 | rsyslog \ |
| 46 | " |
| 47 | |
| 48 | PTESTS_PROBLEMS_META_OE ="\ |
| 49 | jemalloc \ |
| 50 | kernel-selftest \ |
| 51 | keyutils \ |
| 52 | libdbi-perl \ |
| 53 | libgpiod \ |
| 54 | libjcat \ |
| 55 | libteam \ |
| 56 | libxml++ \ |
| 57 | mcelog \ |
| 58 | oprofile \ |
| 59 | ostree \ |
| 60 | psqlodbc \ |
| 61 | pv \ |
| 62 | " |