diff options
Diffstat (limited to 'meta/lib/oeqa/sdkext')
-rw-r--r-- | meta/lib/oeqa/sdkext/cases/devtool.py | 7 |
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 | |||
6 | import subprocess | 6 | import subprocess |
7 | 7 | ||
8 | from oeqa.sdkext.case import OESDKExtTestCase | 8 | from oeqa.sdkext.case import OESDKExtTestCase |
9 | from oeqa.core.decorator.oeid import OETestID | ||
10 | from oeqa.utils.httpserver import HTTPService | 9 | from oeqa.utils.httpserver import HTTPService |
11 | 10 | ||
12 | from oeqa.utils.subprocesstweak import errors_have_output | 11 | from 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) |