From: Richard Purdie Date: Fri, 31 Jul 2015 14:58:53 +0000 (+0100) Subject: oeqa/commands: Increase qemu boot timeout to match testimage.bbclass X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~29511 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd5c87900b73bf44cf96735706d7d06e56b4d20e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa/commands: Increase qemu boot timeout to match testimage.bbclass This matches the value in testimage.bbclass, which makes sense since the autobuilders are usually contended. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 50a08dc1faf..08e2cbb906c 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -188,7 +188,7 @@ def runqemu(pn, test): tinfoil.logger.setLevel(logging.WARNING) import oeqa.targetcontrol tinfoil.config_data.setVar("TEST_LOG_DIR", "${WORKDIR}/testimage") - tinfoil.config_data.setVar("TEST_QEMUBOOT_TIMEOUT", "90") + tinfoil.config_data.setVar("TEST_QEMUBOOT_TIMEOUT", "1000") import oe.recipeutils recipefile = oe.recipeutils.pn_to_recipe(tinfoil.cooker, pn) recipedata = oe.recipeutils.parse_recipe(recipefile, [], tinfoil.config_data)