Message ID | 20251017122649.493701-2-mikko.rapeli@linaro.org |
---|---|
State | New |
Headers | show |
Series | sefltest: disable qemu graphics | expand |
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index b92f017b81..be95e8c74a 100644 --- a/meta/lib/oeqa/selftest/cases/devtool.py +++ b/meta/lib/oeqa/selftest/cases/devtool.py @@ -1832,7 +1832,7 @@ class DevtoolDeployTargetTests(DevtoolBase): result = runCmd('devtool deploy-target -n %s root@localhost' % testrecipe) self.assertIn(' %s' % testfile, result.output) # Boot the image - with runqemu(testimage) as qemu: + with runqemu(testimage, runqemuparams='nographic') as qemu: # Now really test deploy-target for extra_opt in ['', '--strip']: deploy_cmd= 'devtool deploy-target -c %s root@%s %s' % (testrecipe, qemu.ip, extra_opt)
Test does not need it and graphics stack may introduce boot failures. Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> --- meta/lib/oeqa/selftest/cases/devtool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)