1# 2# Lists of the ptest in meta-networking, 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-networking recipes which inherit ptest 6# meta_networking_ptest_recipes=$(bitbake-layers show-recipes --recipes-only --layer meta-networking --inherits ptest --bare | sed -e '1,/=== Matching recipes: ===/d') 7# ptests which take less than ~30s each 8 9PTESTS_FAST_META_NETWORKING = "\ 10 freediameter \ 11 geoip \ 12 libcoap \ 13 libldb \ 14 libnftnl \ 15 libtalloc \ 16 libtdb \ 17 lldpd \ 18 mbedtls \ 19 openhpi \ 20 squid \ 21 tcpdump \ 22" 23 24# firewalld currently hangs forever so disable it for now 25# firewalld 26PTESTS_SLOW_META_NETWORKING = "\ 27 net-snmp \ 28 openvpn \ 29" 30 31PTESTS_PROBLEMS_META_NETWORKING = "\ 32 geoip-perl \ 33 libtevent \ 34 lksctp-tools \ 35 nftables \ 36 openl2tp \ 37 python3-scapy \ 38" 39