summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdkext
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-08 16:56:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-20 14:38:16 +0100
commit10e1b48a9e2d726229a0245339bf7be21ad9ca53 (patch)
treefc1e31a00d193490e4b5b65f9af04372a6e57693 /meta/lib/oeqa/sdkext
parent64fa42868df98dd87fb1f5ad74977ac833936cb5 (diff)
downloadpoky-10e1b48a9e2d726229a0245339bf7be21ad9ca53.tar.gz
oeqa: Drop OETestID
These IDs refer to testopia which we're no longer using. We would now use the test names to definitively reference tests and the IDs can be dropped, along with their supporting code. (From OE-Core rev: 551153b0bd1ebbc05582f6014e3d88b9ce4a46d0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> [Backported to keep in-sync with future qa changes] Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdkext')
-rw-r--r--meta/lib/oeqa/sdkext/cases/devtool.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/meta/lib/oeqa/sdkext/cases/devtool.py b/meta/lib/oeqa/sdkext/cases/devtool.py
index d322f86c73..ab11b2b93a 100644
--- a/meta/lib/oeqa/sdkext/cases/devtool.py
+++ b/meta/lib/oeqa/sdkext/cases/devtool.py
@@ -6,7 +6,6 @@ import shutil
6import subprocess 6import subprocess
7 7
8from oeqa.sdkext.case import OESDKExtTestCase 8from oeqa.sdkext.case import OESDKExtTestCase
9from oeqa.core.decorator.oeid import OETestID
10from oeqa.utils.httpserver import HTTPService 9from oeqa.utils.httpserver import HTTPService
11 10
12from oeqa.utils.subprocesstweak import errors_have_output 11from oeqa.utils.subprocesstweak import errors_have_output
@@ -51,19 +50,15 @@ class DevtoolTest(OESDKExtTestCase):
51 self._run('devtool add myapp %s' % self.myapp_dst) 50 self._run('devtool add myapp %s' % self.myapp_dst)
52 self._run('devtool reset myapp') 51 self._run('devtool reset myapp')
53 52
54 @OETestID(1605)
55 def test_devtool_build_make(self): 53 def test_devtool_build_make(self):
56 self._test_devtool_build(self.myapp_dst) 54 self._test_devtool_build(self.myapp_dst)
57 55
58 @OETestID(1606)
59 def test_devtool_build_esdk_package(self): 56 def test_devtool_build_esdk_package(self):
60 self._test_devtool_build_package(self.myapp_dst) 57 self._test_devtool_build_package(self.myapp_dst)
61 58
62 @OETestID(1607)
63 def test_devtool_build_cmake(self): 59 def test_devtool_build_cmake(self):
64 self._test_devtool_build(self.myapp_cmake_dst) 60 self._test_devtool_build(self.myapp_cmake_dst)
65 61
66 @OETestID(1608)
67 def test_extend_autotools_recipe_creation(self): 62 def test_extend_autotools_recipe_creation(self):
68 req = 'https://github.com/rdfa/librdfa' 63 req = 'https://github.com/rdfa/librdfa'
69 recipe = "librdfa" 64 recipe = "librdfa"
@@ -74,7 +69,6 @@ class DevtoolTest(OESDKExtTestCase):
74 finally: 69 finally:
75 self._run('devtool reset %s' % recipe) 70 self._run('devtool reset %s' % recipe)
76 71
77 @OETestID(1609)
78 def test_devtool_kernelmodule(self): 72 def test_devtool_kernelmodule(self):
79 docfile = 'https://github.com/umlaeute/v4l2loopback.git' 73 docfile = 'https://github.com/umlaeute/v4l2loopback.git'
80 recipe = 'v4l2loopback-driver' 74 recipe = 'v4l2loopback-driver'
@@ -84,7 +78,6 @@ class DevtoolTest(OESDKExtTestCase):
84 finally: 78 finally:
85 self._run('devtool reset %s' % recipe) 79 self._run('devtool reset %s' % recipe)
86 80
87 @OETestID(1610)
88 def test_recipes_for_nodejs(self): 81 def test_recipes_for_nodejs(self):
89 package_nodejs = "npm://registry.npmjs.org;name=winston;version=2.2.0" 82 package_nodejs = "npm://registry.npmjs.org;name=winston;version=2.2.0"
90 self._run('devtool add %s ' % package_nodejs) 83 self._run('devtool add %s ' % package_nodejs)