summaryrefslogtreecommitdiffstats
path: root/meta/classes/testimage.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/classes/testimage.bbclass
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/testimage.bbclass')
-rw-r--r--meta/classes/testimage.bbclass12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index ed3a885bdf..3c689aec91 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -65,15 +65,15 @@ BASICTESTSUITE = "\
65DEFAULT_TEST_SUITES = "${BASICTESTSUITE}" 65DEFAULT_TEST_SUITES = "${BASICTESTSUITE}"
66 66
67# aarch64 has no graphics 67# aarch64 has no graphics
68DEFAULT_TEST_SUITES_remove_aarch64 = "xorg" 68DEFAULT_TEST_SUITES:remove:aarch64 = "xorg"
69# musl doesn't support systemtap 69# musl doesn't support systemtap
70DEFAULT_TEST_SUITES_remove_libc-musl = "stap" 70DEFAULT_TEST_SUITES:remove:libc-musl = "stap"
71 71
72# qemumips is quite slow and has reached the timeout limit several times on the YP build cluster, 72# qemumips is quite slow and has reached the timeout limit several times on the YP build cluster,
73# mitigate this by removing build tests for qemumips machines. 73# mitigate this by removing build tests for qemumips machines.
74MIPSREMOVE ??= "buildcpio buildlzip buildgalculator" 74MIPSREMOVE ??= "buildcpio buildlzip buildgalculator"
75DEFAULT_TEST_SUITES_remove_qemumips = "${MIPSREMOVE}" 75DEFAULT_TEST_SUITES:remove:qemumips = "${MIPSREMOVE}"
76DEFAULT_TEST_SUITES_remove_qemumips64 = "${MIPSREMOVE}" 76DEFAULT_TEST_SUITES:remove:qemumips64 = "${MIPSREMOVE}"
77 77
78TEST_SUITES ?= "${DEFAULT_TEST_SUITES}" 78TEST_SUITES ?= "${DEFAULT_TEST_SUITES}"
79 79
@@ -86,7 +86,7 @@ TEST_RUNQEMUPARAMS ?= ""
86TESTIMAGE_BOOT_PATTERNS ?= "" 86TESTIMAGE_BOOT_PATTERNS ?= ""
87 87
88TESTIMAGEDEPENDS = "" 88TESTIMAGEDEPENDS = ""
89TESTIMAGEDEPENDS_append_qemuall = " qemu-native:do_populate_sysroot qemu-helper-native:do_populate_sysroot qemu-helper-native:do_addto_recipe_sysroot" 89TESTIMAGEDEPENDS:append:qemuall = " qemu-native:do_populate_sysroot qemu-helper-native:do_populate_sysroot qemu-helper-native:do_addto_recipe_sysroot"
90TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'cpio-native:do_populate_sysroot', '', d)}" 90TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'cpio-native:do_populate_sysroot', '', d)}"
91TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'dnf-native:do_populate_sysroot', '', d)}" 91TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'dnf-native:do_populate_sysroot', '', d)}"
92TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'createrepo-c-native:do_populate_sysroot', '', d)}" 92TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'createrepo-c-native:do_populate_sysroot', '', d)}"
@@ -94,7 +94,7 @@ TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'ipk', 'opkg-utils-na
94TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'deb', 'apt-native:do_populate_sysroot package-index:do_package_index', '', d)}" 94TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'deb', 'apt-native:do_populate_sysroot package-index:do_package_index', '', d)}"
95 95
96TESTIMAGELOCK = "${TMPDIR}/testimage.lock" 96TESTIMAGELOCK = "${TMPDIR}/testimage.lock"
97TESTIMAGELOCK_qemuall = "" 97TESTIMAGELOCK:qemuall = ""
98 98
99TESTIMAGE_DUMP_DIR ?= "${LOG_DIR}/runtime-hostdump/" 99TESTIMAGE_DUMP_DIR ?= "${LOG_DIR}/runtime-hostdump/"
100 100