summaryrefslogtreecommitdiffstats
path: root/meta-oe/conf/include/ptest-packagelists-meta-oe.inc
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2023-04-02 15:29:35 -0700
committerKhem Raj <raj.khem@gmail.com>2023-04-02 17:43:22 -0700
commitd094f80089428438b9681a52108aa9b63cbd2884 (patch)
tree36f4dc685ad0bc08bf74f12523ab8f307c00cc2f /meta-oe/conf/include/ptest-packagelists-meta-oe.inc
parent0fc5f550d31f82aa348a4145573df3aea896f5ab (diff)
downloadmeta-openembedded-d094f80089428438b9681a52108aa9b63cbd2884.tar.gz
ptest-packagelists-meta-oe.inc: add ptest recipes
Similar to ptest-packagelists.inc in oe-core, this list enables per image ptest (isolated ptests for a given recipe) * Add recipes to PTEST_FAST_META_OE for ptests which take less than ~30s * Add recipes to PTEST_SLOW_META_OE for ptests which take longer * Add recipes to PTEST_PROBLEMS_META_OE for ptests which have failing tests or other issues with ptest package The initial list was taken from: meta_oe_ptest_recipes=$(bitbake-layers show-recipes --recipes-only \ --layer meta-oe --inherits ptest --bare | tr '\n' ' ' | \ pcregrep -o1 '^NOTE:.+===(.+)$') Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/conf/include/ptest-packagelists-meta-oe.inc')
-rw-r--r--meta-oe/conf/include/ptest-packagelists-meta-oe.inc60
1 files changed, 60 insertions, 0 deletions
diff --git a/meta-oe/conf/include/ptest-packagelists-meta-oe.inc b/meta-oe/conf/include/ptest-packagelists-meta-oe.inc
new file mode 100644
index 000000000..e8898ce78
--- /dev/null
+++ b/meta-oe/conf/include/ptest-packagelists-meta-oe.inc
@@ -0,0 +1,60 @@
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 libxml++-5.0 \
25 libxmlb \
26 libyang \
27 lmdb \
28 minicoredumper \
29 neon \
30 nodejs \
31 onig \
32 poco \
33 protobuf \
34 sdbus-c++ \
35 uthash \
36 xmlsec1 \
37 zeromq \
38"
39
40PTESTS_SLOW_META_OE = "\
41 fftw \
42 libusb-compat \
43 rsyslog \
44"
45
46PTESTS_PROBLEMS_META_OE ="\
47 jemalloc \
48 kernel-selftest \
49 keyutils \
50 libdbi-perl \
51 libgpiod \
52 libjcat \
53 libteam \
54 libxml++ \
55 mcelog \
56 oprofile \
57 ostree \
58 psqlodbc \
59 pv \
60"