Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 1 | # |
| 2 | # Lists of the ptest in meta-perl, 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-perl recipes which inherit ptest |
| 6 | # meta_perl_ptest_recipes=$(bitbake-layers show-recipes --recipes-only --layer meta-perl --inherits ptest --bare | tr '\n' ' ' | pcregrep -o1 '^NOTE:.+===(.+)$') |
| 7 | # |
| 8 | # ptests which take less than ~30s each |
| 9 | PTESTS_FAST_META_PERL = "\ |
| 10 | libcapture-tiny-perl \ |
| 11 | libcgi-perl \ |
| 12 | libcrypt-openssl-random-perl \ |
| 13 | libextutils-config-perl \ |
| 14 | libhtml-tagset-perl \ |
| 15 | libmozilla-ca-perl \ |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 16 | libmodule-build-tiny-perl \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 17 | libstrictures-perl \ |
| 18 | libterm-readkey-perl \ |
| 19 | libtest-nowarnings-perl \ |
| 20 | " |
| 21 | |
| 22 | PTESTS_SLOW_META_PERL = "\ |
| 23 | libio-socket-ssl-perl \ |
| 24 | " |
| 25 | |
| 26 | PTESTS_PROBLEMS_META_PERL ="\ |
| 27 | libauthen-sasl-perl \ |
| 28 | libconfig-autoconf-perl \ |
| 29 | libcrypt-openssl-guess-perl \ |
| 30 | libcrypt-openssl-rsa-perl \ |
| 31 | libdata-hexdump-perl \ |
| 32 | libdbd-sqlite-perl \ |
| 33 | libdigest-hmac-perl \ |
| 34 | libdigest-sha1-perl \ |
| 35 | libnet-dns-perl \ |
| 36 | libnet-dns-sec-perl \ |
| 37 | libnet-ldap-perl \ |
| 38 | libencode-perl \ |
| 39 | libextutils-installpaths-perl \ |
| 40 | libfile-slurper-perl \ |
| 41 | libhtml-parser-perl \ |
| 42 | libmime-types-perl \ |
| 43 | libnet-ssleay-perl \ |
| 44 | libsub-uplevel-perl \ |
| 45 | libtest-deep-perl \ |
| 46 | libtest-harness-perl \ |
| 47 | libtest-warn-perl \ |
| 48 | libunicode-linebreak-perl \ |
| 49 | libunix-statgrab \ |
| 50 | libxml-libxml-perl \ |
| 51 | " |