summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils')
-rw-r--r--meta/lib/oeqa/utils/commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py
index 93a0e4846b..32e001c6b5 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -178,7 +178,7 @@ def create_temp_layer(templayerdir, templayername, priority=999, recipepathspec=
178 178
179 179
180@contextlib.contextmanager 180@contextlib.contextmanager
181def runqemu(pn): 181def runqemu(pn, ssh=True):
182 182
183 import bb.tinfoil 183 import bb.tinfoil
184 import bb.build 184 import bb.build
@@ -222,7 +222,7 @@ def runqemu(pn):
222 try: 222 try:
223 qemu.deploy() 223 qemu.deploy()
224 try: 224 try:
225 qemu.start() 225 qemu.start(ssh=ssh)
226 except bb.build.FuncFailed: 226 except bb.build.FuncFailed:
227 raise Exception('Failed to start QEMU - see the logs in %s' % logdir) 227 raise Exception('Failed to start QEMU - see the logs in %s' % logdir)
228 228