diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-31 15:58:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-01 07:34:08 +0100 |
commit | 18dfdb08403856c106169a969ce9080c60b7cb51 (patch) | |
tree | e371898287d3faf6648b2e49e34ef4e26f9474c7 /meta/lib/oeqa | |
parent | b850da9224d8af4bde058820291cdcbfbb112121 (diff) | |
download | poky-18dfdb08403856c106169a969ce9080c60b7cb51.tar.gz |
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.
(From OE-Core rev: dd5c87900b73bf44cf96735706d7d06e56b4d20e)
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): | |||
188 | tinfoil.logger.setLevel(logging.WARNING) | 188 | tinfoil.logger.setLevel(logging.WARNING) |
189 | import oeqa.targetcontrol | 189 | import oeqa.targetcontrol |
190 | tinfoil.config_data.setVar("TEST_LOG_DIR", "${WORKDIR}/testimage") | 190 | tinfoil.config_data.setVar("TEST_LOG_DIR", "${WORKDIR}/testimage") |
191 | tinfoil.config_data.setVar("TEST_QEMUBOOT_TIMEOUT", "90") | 191 | tinfoil.config_data.setVar("TEST_QEMUBOOT_TIMEOUT", "1000") |
192 | import oe.recipeutils | 192 | import oe.recipeutils |
193 | recipefile = oe.recipeutils.pn_to_recipe(tinfoil.cooker, pn) | 193 | recipefile = oe.recipeutils.pn_to_recipe(tinfoil.cooker, pn) |
194 | recipedata = oe.recipeutils.parse_recipe(recipefile, [], tinfoil.config_data) | 194 | recipedata = oe.recipeutils.parse_recipe(recipefile, [], tinfoil.config_data) |