diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-11 21:01:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-14 07:17:47 +0000 |
commit | 3419f8340cc515b3f71f23a4b49bd898e972668e (patch) | |
tree | 47d5e47df207e4fec8b6e468b7cc628c555671bd /meta/recipes-core | |
parent | 5850561b05bd5bd16b2d02d0c4c4efc705543139 (diff) | |
download | poky-3419f8340cc515b3f71f23a4b49bd898e972668e.tar.gz |
ptest-packagelists: Simplify ptest list/code
All the usage sites remove the -ptest suffix. Simply the original list
instead and clean up the code.
(From OE-Core rev: 4a28057849f9edc6ac06d115531f579673d788b5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/images/core-image-ptest-all.bb | 4 | ||||
-rw-r--r-- | meta/recipes-core/images/core-image-ptest.bb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/images/core-image-ptest-all.bb b/meta/recipes-core/images/core-image-ptest-all.bb index 81c9b2d68a..c84e653d6e 100644 --- a/meta/recipes-core/images/core-image-ptest-all.bb +++ b/meta/recipes-core/images/core-image-ptest-all.bb | |||
@@ -12,9 +12,9 @@ require conf/distro/include/ptest-packagelists.inc | |||
12 | PTESTS = "${PTESTS_FAST} ${PTESTS_SLOW}" | 12 | PTESTS = "${PTESTS_FAST} ${PTESTS_SLOW}" |
13 | 13 | ||
14 | do_testimage[noexec] = "1" | 14 | do_testimage[noexec] = "1" |
15 | do_testimage[depends] = "${@' '.join(['core-image-ptest-'+x.replace('-ptest', '')+':do_testimage' for x in d.getVar('PTESTS').split()])}" | 15 | do_testimage[depends] = "${@' '.join(['core-image-ptest-'+x+':do_testimage' for x in d.getVar('PTESTS').split()])}" |
16 | 16 | ||
17 | do_build[depends] = "${@' '.join(['core-image-ptest-'+x.replace('-ptest', '')+':do_build' for x in d.getVar('PTESTS').split()])}" | 17 | do_build[depends] = "${@' '.join(['core-image-ptest-'+x+':do_build' for x in d.getVar('PTESTS').split()])}" |
18 | 18 | ||
19 | # normally image.bbclass would do this | 19 | # normally image.bbclass would do this |
20 | EXCLUDE_FROM_WORLD = "1" | 20 | EXCLUDE_FROM_WORLD = "1" |
diff --git a/meta/recipes-core/images/core-image-ptest.bb b/meta/recipes-core/images/core-image-ptest.bb index 0c67943b05..90c26641ba 100644 --- a/meta/recipes-core/images/core-image-ptest.bb +++ b/meta/recipes-core/images/core-image-ptest.bb | |||
@@ -11,7 +11,7 @@ PTESTS = "${PTESTS_SLOW} ${PTESTS_FAST}" | |||
11 | 11 | ||
12 | IMAGE_INSTALL:append = " ${MCNAME}-ptest openssh" | 12 | IMAGE_INSTALL:append = " ${MCNAME}-ptest openssh" |
13 | 13 | ||
14 | BBCLASSEXTEND = "${@' '.join(['mcextend:'+x.replace('-ptest', '') for x in d.getVar('PTESTS').split()])}" | 14 | BBCLASSEXTEND = "${@' '.join(['mcextend:'+x for x in d.getVar('PTESTS').split()])}" |
15 | 15 | ||
16 | # The image can sufficiently large (~1.8GB) that we need to be careful that it fits in a live | 16 | # The image can sufficiently large (~1.8GB) that we need to be careful that it fits in a live |
17 | # image (which has a 4GB limit), so nullify the overhead factor (1.3x out of the | 17 | # image (which has a 4GB limit), so nullify the overhead factor (1.3x out of the |