summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/qemurunner.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-06-02 23:29:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-06-11 23:50:59 +0100
commitd9e5152bd66f37774182a9d9d821997e11783ef1 (patch)
treee2d01d355df4c1ffd0117c1ffc6b3747c8af41d0 /meta/lib/oeqa/utils/qemurunner.py
parent37be8268f9439ac5b4aec3f6bb49ae923105791d (diff)
downloadpoky-d9e5152bd66f37774182a9d9d821997e11783ef1.tar.gz
qemurunner: Increase startup timeout 120 -> 300
We now spend time copying the VM image into a tmpfs and with IO load on the system, the time + the boot time of the VM can take longer than 120s. Increase the timeout to match the added overhead of copying the image file. (From OE-Core rev: a40087c966af5ffb9309e1ddfdb3d06973e0bddd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/utils/qemurunner.py')
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index 24af2fb20b..5dc1a136e3 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -65,7 +65,7 @@ class QemuRunner:
65 self.boot_patterns = boot_patterns 65 self.boot_patterns = boot_patterns
66 self.tmpfsdir = tmpfsdir 66 self.tmpfsdir = tmpfsdir
67 67
68 self.runqemutime = 120 68 self.runqemutime = 300
69 if not workdir: 69 if not workdir:
70 workdir = os.getcwd() 70 workdir = os.getcwd()
71 self.qemu_pidfile = workdir + '/pidfile_' + str(os.getpid()) 71 self.qemu_pidfile = workdir + '/pidfile_' + str(os.getpid())