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-09 16:31:55 +0100
commitc7592b01478def091b6787412390c61e7ce0a0cd (patch)
tree3c2f26480c6e16fae0ad65b032e3dc0fccfca71b /meta/lib/oeqa/sdkext
parentc0dc72bad92e2e4dc0aedb48b969709f821baf73 (diff)
downloadpoky-c7592b01478def091b6787412390c61e7ce0a0cd.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: 8e2d0575e4e7036b5f60e632f377a8ab2b96ead8) 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)