summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnatoliy Odukha <aodukha@gmail.com>2020-11-06 13:02:30 +0200
committerAnatoliy Odukha <aodukha@gmail.com>2020-11-06 13:12:22 +0200
commit72b199747a9ae97b488b8a3e3ab588fcfb2ead6d (patch)
tree5d3bd6aa81aef04c69c6c06473dfdadfcf76f087
parent1479cef47264fb2548efa4a8900353bc8592a7f7 (diff)
downloadmeta-updater-feat/dunfell-fix-provisioning-test-timeout.tar.gz
test in quemu on CI may need more time to prepreare env and provision device.feat/dunfell-fix-provisioning-test-timeout
Signed-off-by: Anatoliy Odukha <aodukha@gmail.com>
-rw-r--r--lib/oeqa/selftest/cases/testutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oeqa/selftest/cases/testutils.py b/lib/oeqa/selftest/cases/testutils.py
index 3abfa5e..e042ded 100644
--- a/lib/oeqa/selftest/cases/testutils.py
+++ b/lib/oeqa/selftest/cases/testutils.py
@@ -125,7 +125,7 @@ def verifyProvisioned(testInst, machine, hwid=''):
125 # Verify that device HAS provisioned. 125 # Verify that device HAS provisioned.
126 # First loop while waiting for the device to boot. 126 # First loop while waiting for the device to boot.
127 ran_ok = False 127 ran_ok = False
128 for delay in [5, 5, 5, 5, 10, 10, 10, 10]: 128 for delay in [15, 10, 10, 10, 10, 10, 10, 15, 15]:
129 stdout, stderr, retcode = testInst.qemu_command('aktualizr-info') 129 stdout, stderr, retcode = testInst.qemu_command('aktualizr-info')
130 if retcode == 0 and stderr == b'': 130 if retcode == 0 and stderr == b'':
131 ran_ok = True 131 ran_ok = True