summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 29e82881d1..d06d480c2b 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -8,7 +8,7 @@ from oeqa.core.decorator import OETestTag
8import os 8import os
9import tempfile 9import tempfile
10import oe.lsb 10import oe.lsb
11from oeqa.core.decorator.data import skipIfNotQemu 11from oeqa.core.decorator.data import skipIfNotQemu, skipIfNotMachine
12 12
13class TestExport(OESelftestTestCase): 13class TestExport(OESelftestTestCase):
14 14
@@ -200,6 +200,8 @@ class TestImage(OESelftestTestCase):
200 bitbake('core-image-full-cmdline socat') 200 bitbake('core-image-full-cmdline socat')
201 bitbake('-c testimage core-image-full-cmdline') 201 bitbake('-c testimage core-image-full-cmdline')
202 202
203 # https://bugzilla.yoctoproject.org/show_bug.cgi?id=14966
204 @skipIfNotMachine("qemux86-64", "test needs qemux86-64")
203 def test_testimage_virgl_gtk_sdl(self): 205 def test_testimage_virgl_gtk_sdl(self):
204 """ 206 """
205 Summary: Check host-assisted accelerate OpenGL functionality in qemu with gtk and SDL frontends 207 Summary: Check host-assisted accelerate OpenGL functionality in qemu with gtk and SDL frontends
@@ -241,6 +243,7 @@ class TestImage(OESelftestTestCase):
241 bitbake('core-image-minimal') 243 bitbake('core-image-minimal')
242 bitbake('-c testimage core-image-minimal') 244 bitbake('-c testimage core-image-minimal')
243 245
246 @skipIfNotMachine("qemux86-64", "test needs qemux86-64")
244 def test_testimage_virgl_headless(self): 247 def test_testimage_virgl_headless(self):
245 """ 248 """
246 Summary: Check host-assisted accelerate OpenGL functionality in qemu with egl-headless frontend 249 Summary: Check host-assisted accelerate OpenGL functionality in qemu with egl-headless frontend