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 \ |
Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 13 | libdigest-hmac-perl \ |
Patrick Williams | 03514f1 | 2024-04-05 07:04:11 -0500 | [diff] [blame] | 14 | liberror-perl \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 15 | libextutils-config-perl \ |
Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 16 | libextutils-installpaths-perl \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 17 | libhtml-tagset-perl \ |
| 18 | libmozilla-ca-perl \ |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 19 | libmodule-build-tiny-perl \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 20 | libstrictures-perl \ |
| 21 | libterm-readkey-perl \ |
| 22 | libtest-nowarnings-perl \ |
Patrick Williams | ac13d5f | 2023-11-24 18:59:46 -0600 | [diff] [blame] | 23 | libtext-diff-perl \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 24 | " |
| 25 | |
| 26 | PTESTS_SLOW_META_PERL = "\ |
| 27 | libio-socket-ssl-perl \ |
| 28 | " |
| 29 | |
| 30 | PTESTS_PROBLEMS_META_PERL ="\ |
| 31 | libauthen-sasl-perl \ |
| 32 | libconfig-autoconf-perl \ |
| 33 | libcrypt-openssl-guess-perl \ |
| 34 | libcrypt-openssl-rsa-perl \ |
| 35 | libdata-hexdump-perl \ |
| 36 | libdbd-sqlite-perl \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 37 | libdigest-sha1-perl \ |
| 38 | libnet-dns-perl \ |
| 39 | libnet-dns-sec-perl \ |
| 40 | libnet-ldap-perl \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 41 | libfile-slurper-perl \ |
| 42 | libhtml-parser-perl \ |
| 43 | libmime-types-perl \ |
| 44 | libnet-ssleay-perl \ |
| 45 | libsub-uplevel-perl \ |
| 46 | libtest-deep-perl \ |
| 47 | libtest-harness-perl \ |
| 48 | libtest-warn-perl \ |
| 49 | libunicode-linebreak-perl \ |
| 50 | libunix-statgrab \ |
| 51 | libxml-libxml-perl \ |
| 52 | " |