summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/runtime_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/runtime_test.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 6c25bb901d..072029ba72 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -1,7 +1,6 @@
1from oeqa.selftest.case import OESelftestTestCase 1from oeqa.selftest.case import OESelftestTestCase
2from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_bb_vars, runqemu 2from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_bb_vars, runqemu
3from oeqa.utils.sshcontrol import SSHControl 3from oeqa.utils.sshcontrol import SSHControl
4from oeqa.core.decorator.oeid import OETestID
5import os 4import os
6import re 5import re
7import tempfile 6import tempfile
@@ -15,7 +14,6 @@ class TestExport(OESelftestTestCase):
15 runCmd("rm -rf /tmp/sdk") 14 runCmd("rm -rf /tmp/sdk")
16 super(TestExport, cls).tearDownClass() 15 super(TestExport, cls).tearDownClass()
17 16
18 @OETestID(1499)
19 def test_testexport_basic(self): 17 def test_testexport_basic(self):
20 """ 18 """
21 Summary: Check basic testexport functionality with only ping test enabled. 19 Summary: Check basic testexport functionality with only ping test enabled.
@@ -55,7 +53,6 @@ class TestExport(OESelftestTestCase):
55 # Verify ping test was succesful 53 # Verify ping test was succesful
56 self.assertEqual(0, result.status, 'oe-test runtime returned a non 0 status') 54 self.assertEqual(0, result.status, 'oe-test runtime returned a non 0 status')
57 55
58 @OETestID(1641)
59 def test_testexport_sdk(self): 56 def test_testexport_sdk(self):
60 """ 57 """
61 Summary: Check sdk functionality for testexport. 58 Summary: Check sdk functionality for testexport.
@@ -110,7 +107,6 @@ class TestExport(OESelftestTestCase):
110 107
111class TestImage(OESelftestTestCase): 108class TestImage(OESelftestTestCase):
112 109
113 @OETestID(1644)
114 def test_testimage_install(self): 110 def test_testimage_install(self):
115 """ 111 """
116 Summary: Check install packages functionality for testimage/testexport. 112 Summary: Check install packages functionality for testimage/testexport.
@@ -131,7 +127,6 @@ class TestImage(OESelftestTestCase):
131 bitbake('core-image-full-cmdline socat') 127 bitbake('core-image-full-cmdline socat')
132 bitbake('-c testimage core-image-full-cmdline') 128 bitbake('-c testimage core-image-full-cmdline')
133 129
134 @OETestID(1883)
135 def test_testimage_dnf(self): 130 def test_testimage_dnf(self):
136 """ 131 """
137 Summary: Check package feeds functionality for dnf 132 Summary: Check package feeds functionality for dnf
@@ -169,7 +164,6 @@ class TestImage(OESelftestTestCase):
169 # remove the oeqa-feed-sign temporal directory 164 # remove the oeqa-feed-sign temporal directory
170 shutil.rmtree(self.gpg_home, ignore_errors=True) 165 shutil.rmtree(self.gpg_home, ignore_errors=True)
171 166
172 @OETestID(1883)
173 def test_testimage_virgl_gtk(self): 167 def test_testimage_virgl_gtk(self):
174 """ 168 """
175 Summary: Check host-assisted accelerate OpenGL functionality in qemu with gtk frontend 169 Summary: Check host-assisted accelerate OpenGL functionality in qemu with gtk frontend
@@ -200,7 +194,6 @@ class TestImage(OESelftestTestCase):
200 bitbake('core-image-minimal') 194 bitbake('core-image-minimal')
201 bitbake('-c testimage core-image-minimal') 195 bitbake('-c testimage core-image-minimal')
202 196
203 @OETestID(1883)
204 def test_testimage_virgl_headless(self): 197 def test_testimage_virgl_headless(self):
205 """ 198 """
206 Summary: Check host-assisted accelerate OpenGL functionality in qemu with egl-headless frontend 199 Summary: Check host-assisted accelerate OpenGL functionality in qemu with egl-headless frontend
@@ -235,8 +228,6 @@ class TestImage(OESelftestTestCase):
235 bitbake('-c testimage core-image-minimal') 228 bitbake('-c testimage core-image-minimal')
236 229
237class Postinst(OESelftestTestCase): 230class Postinst(OESelftestTestCase):
238 @OETestID(1540)
239 @OETestID(1545)
240 def test_postinst_rootfs_and_boot(self): 231 def test_postinst_rootfs_and_boot(self):
241 """ 232 """
242 Summary: The purpose of this test case is to verify Post-installation 233 Summary: The purpose of this test case is to verify Post-installation