summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnatoliy Odukha <aodukha@gmail.com>2020-11-08 15:27:48 +0200
committerGitHub <noreply@github.com>2020-11-08 15:27:48 +0200
commitcc1b38310f4ebd0558438057a1edfeb4a3555b16 (patch)
tree5d3bd6aa81aef04c69c6c06473dfdadfcf76f087
parent1479cef47264fb2548efa4a8900353bc8592a7f7 (diff)
parent72b199747a9ae97b488b8a3e3ab588fcfb2ead6d (diff)
downloadmeta-updater-cc1b38310f4ebd0558438057a1edfeb4a3555b16.tar.gz
Merge pull request #786 from advancedtelematic/feat/dunfell-fix-provisioning-test-timeout
test in quemu on CI may need more time to prepare env
-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