diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-31 15:58:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-31 15:58:55 +0100 |
commit | dd5c87900b73bf44cf96735706d7d06e56b4d20e (patch) | |
tree | 7817a3a23bca8ddf067f3aedb0d2e75bd6d39333 /meta/lib/oeqa | |
parent | 799b25e09a149303edc1c098935f38a438878a95 (diff) | |
download | openembedded-core-dd5c87900b73bf44cf96735706d7d06e56b4d20e.tar.gz openembedded-core-dd5c87900b73bf44cf96735706d7d06e56b4d20e.tar.bz2 openembedded-core-dd5c87900b73bf44cf96735706d7d06e56b4d20e.zip |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 50a08dc1fa..08e2cbb906 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) |