diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-10-06 11:06:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-09 12:31:40 +0100 |
commit | 9489382b6a77786e5d040b4da4a654788d1e9a42 (patch) | |
tree | 0e0dd3829ab98bff7db7da6ee635e71624457dfe | |
parent | b5e89240685ea6d919c176f2d3ba1a337777f421 (diff) | |
download | poky-9489382b6a77786e5d040b4da4a654788d1e9a42.tar.gz |
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]
(From OE-Core rev: 4a1c04c0d509b2cda9b2ccd5a80523c05fa279c6)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/testimage.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 5ddbecb356..6b6781d860 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -58,6 +58,12 @@ DEFAULT_TEST_SUITES_pn-meta-toolchain = "auto" | |||
58 | # aarch64 has no graphics | 58 | # aarch64 has no graphics |
59 | DEFAULT_TEST_SUITES_remove_aarch64 = "xorg" | 59 | DEFAULT_TEST_SUITES_remove_aarch64 = "xorg" |
60 | 60 | ||
61 | # qemumips is quite slow and has reached the timeout limit several times on the YP build cluster, | ||
62 | # mitigate this by removing build tests for qemumips machines. | ||
63 | MIPSREMOVE ??= "buildcvs buildiptables buildgalculator" | ||
64 | DEFAULT_TEST_SUITES_remove_qemumips = "${MIPSREMOVE}" | ||
65 | DEFAULT_TEST_SUITES_remove_qemumips64 = "${MIPSREMOVE}" | ||
66 | |||
61 | TEST_SUITES ?= "${DEFAULT_TEST_SUITES}" | 67 | TEST_SUITES ?= "${DEFAULT_TEST_SUITES}" |
62 | 68 | ||
63 | TEST_QEMUBOOT_TIMEOUT ?= "1000" | 69 | TEST_QEMUBOOT_TIMEOUT ?= "1000" |