[oe-commits] [openembedded-core] 06/06: testimage: disable build tests for qemumips and qemumips64

git at git.openembedded.org git at git.openembedded.org
Sat Oct 8 22:09:22 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 8ba72e94ab6a7ffe05bf7bd282e8e9d80181a47f
Author: Joshua Lock <joshua.g.lock at intel.com>
AuthorDate: Thu Oct 6 11:06:54 2016 +0100

    testimage: disable build tests for qemumips and qemumips64
    
    It's not uncommon for qemumips[64] builds on the Yocto Project
    autobuilder to fail during Sanity Tests after a very long timeout
    period. This is due to the MIPS emulation in QEMU being slow and
    some of the build tests taking a very long time on MIPS machines.
    
    This patch works around this slowness by disabling the more
    complex build tests for QEMU MIPS machines.
    
    [YOCTO #10340]
    
    Signed-off-by: Joshua Lock <joshua.g.lock at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/testimage.bbclass | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index 5ddbecb..6b6781d 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -58,6 +58,12 @@ DEFAULT_TEST_SUITES_pn-meta-toolchain = "auto"
 # aarch64 has no graphics
 DEFAULT_TEST_SUITES_remove_aarch64 = "xorg"
 
+# qemumips is quite slow and has reached the timeout limit several times on the YP build cluster,
+# mitigate this by removing build tests for qemumips machines.
+MIPSREMOVE ??= "buildcvs buildiptables buildgalculator"
+DEFAULT_TEST_SUITES_remove_qemumips = "${MIPSREMOVE}"
+DEFAULT_TEST_SUITES_remove_qemumips64 = "${MIPSREMOVE}"
+
 TEST_SUITES ?= "${DEFAULT_TEST_SUITES}"
 
 TEST_QEMUBOOT_TIMEOUT ?= "1000"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list