diff options
author | Laurent Bonnans <laurent.bonnans@here.com> | 2019-07-09 12:06:22 +0200 |
---|---|---|
committer | Mykhaylo Sul <ext-mykhaylo.sul@here.com> | 2019-07-17 16:02:34 +0300 |
commit | 7c4893fb49700025998c1c9863307ecc1811b2fd (patch) | |
tree | 0a0ab75222336371672f2a73f339d618e5b6f289 /lib/oeqa/selftest/cases/testutils.py | |
parent | 6c172294ae65cba1881412d32cf4119d90ade8b2 (diff) | |
download | meta-updater-7c4893fb49700025998c1c9863307ecc1811b2fd.tar.gz |
Fix some oe-selftest timeouts issues
Was causing problems on CI
Signed-off-by: Laurent Bonnans <laurent.bonnans@here.com>
Diffstat (limited to 'lib/oeqa/selftest/cases/testutils.py')
-rw-r--r-- | lib/oeqa/selftest/cases/testutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oeqa/selftest/cases/testutils.py b/lib/oeqa/selftest/cases/testutils.py index e67f30c..208f822 100644 --- a/lib/oeqa/selftest/cases/testutils.py +++ b/lib/oeqa/selftest/cases/testutils.py | |||
@@ -61,7 +61,7 @@ def qemu_bake_image(imagename): | |||
61 | bitbake(imagename) | 61 | bitbake(imagename) |
62 | 62 | ||
63 | 63 | ||
64 | def qemu_send_command(port, command, timeout=60): | 64 | def qemu_send_command(port, command, timeout=120): |
65 | command = ['ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@localhost -p ' + | 65 | command = ['ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@localhost -p ' + |
66 | str(port) + ' "' + command + '"'] | 66 | str(port) + ' "' + command + '"'] |
67 | s2 = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) | 67 | s2 = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) |