diff options
author | Laurent Bonnans <laurent.bonnans@here.com> | 2019-07-09 12:06:22 +0200 |
---|---|---|
committer | Laurent Bonnans <laurent.bonnans@here.com> | 2019-07-17 14:59:01 +0200 |
commit | 3d83977e4d3f7a75ad80c4a5ba190b4d48ec2ec8 (patch) | |
tree | 82b29b72adc92d90d7f1bdbe2cc25edead529740 /lib/oeqa/selftest/cases/testutils.py | |
parent | 08e60a5085e6e6da95d7c85fed16147ce9e834af (diff) | |
download | meta-updater-3d83977e4d3f7a75ad80c4a5ba190b4d48ec2ec8.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) |