summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index fe83b248f3..ae79724956 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -10,7 +10,7 @@ from oeqa.core.decorator import OETestTag
10import os 10import os
11import tempfile 11import tempfile
12import oe.lsb 12import oe.lsb
13from oeqa.core.decorator.data import skipIfNotQemu 13from oeqa.core.decorator.data import skipIfNotQemu, skipIfNotMachine
14 14
15class TestExport(OESelftestTestCase): 15class TestExport(OESelftestTestCase):
16 16
@@ -202,6 +202,8 @@ class TestImage(OESelftestTestCase):
202 bitbake('core-image-full-cmdline socat') 202 bitbake('core-image-full-cmdline socat')
203 bitbake('-c testimage core-image-full-cmdline') 203 bitbake('-c testimage core-image-full-cmdline')
204 204
205 # https://bugzilla.yoctoproject.org/show_bug.cgi?id=14966
206 @skipIfNotMachine("qemux86-64", "test needs qemux86-64")
205 def test_testimage_virgl_gtk_sdl(self): 207 def test_testimage_virgl_gtk_sdl(self):
206 """ 208 """
207 Summary: Check host-assisted accelerate OpenGL functionality in qemu with gtk and SDL frontends 209 Summary: Check host-assisted accelerate OpenGL functionality in qemu with gtk and SDL frontends
@@ -243,6 +245,7 @@ class TestImage(OESelftestTestCase):
243 bitbake('core-image-minimal') 245 bitbake('core-image-minimal')
244 bitbake('-c testimage core-image-minimal') 246 bitbake('-c testimage core-image-minimal')
245 247
248 @skipIfNotMachine("qemux86-64", "test needs qemux86-64")
246 def test_testimage_virgl_headless(self): 249 def test_testimage_virgl_headless(self):
247 """ 250 """
248 Summary: Check host-assisted accelerate OpenGL functionality in qemu with egl-headless frontend 251 Summary: Check host-assisted accelerate OpenGL functionality in qemu with egl-headless frontend