diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-08 16:56:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-09 16:31:55 +0100 |
commit | c7592b01478def091b6787412390c61e7ce0a0cd (patch) | |
tree | 3c2f26480c6e16fae0ad65b032e3dc0fccfca71b /meta/lib/oeqa/selftest/cases/prservice.py | |
parent | c0dc72bad92e2e4dc0aedb48b969709f821baf73 (diff) | |
download | poky-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/selftest/cases/prservice.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/prservice.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/meta/lib/oeqa/selftest/cases/prservice.py b/meta/lib/oeqa/selftest/cases/prservice.py index 796ad4f5fe..b0a68a0b1f 100644 --- a/meta/lib/oeqa/selftest/cases/prservice.py +++ b/meta/lib/oeqa/selftest/cases/prservice.py | |||
@@ -6,7 +6,6 @@ import datetime | |||
6 | import oeqa.utils.ftools as ftools | 6 | import oeqa.utils.ftools as ftools |
7 | from oeqa.selftest.case import OESelftestTestCase | 7 | from oeqa.selftest.case import OESelftestTestCase |
8 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var | 8 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var |
9 | from oeqa.core.decorator.oeid import OETestID | ||
10 | from oeqa.utils.network import get_free_port | 9 | from oeqa.utils.network import get_free_port |
11 | 10 | ||
12 | class BitbakePrTests(OESelftestTestCase): | 11 | class BitbakePrTests(OESelftestTestCase): |
@@ -88,39 +87,30 @@ class BitbakePrTests(OESelftestTestCase): | |||
88 | 87 | ||
89 | self.assertTrue(pr_2 - pr_1 == 1, "Step between same pkg. revision is greater than 1") | 88 | self.assertTrue(pr_2 - pr_1 == 1, "Step between same pkg. revision is greater than 1") |
90 | 89 | ||
91 | @OETestID(930) | ||
92 | def test_import_export_replace_db(self): | 90 | def test_import_export_replace_db(self): |
93 | self.run_test_pr_export_import('m4') | 91 | self.run_test_pr_export_import('m4') |
94 | 92 | ||
95 | @OETestID(931) | ||
96 | def test_import_export_override_db(self): | 93 | def test_import_export_override_db(self): |
97 | self.run_test_pr_export_import('m4', replace_current_db=False) | 94 | self.run_test_pr_export_import('m4', replace_current_db=False) |
98 | 95 | ||
99 | @OETestID(932) | ||
100 | def test_pr_service_rpm_arch_dep(self): | 96 | def test_pr_service_rpm_arch_dep(self): |
101 | self.run_test_pr_service('m4', 'rpm', 'do_package') | 97 | self.run_test_pr_service('m4', 'rpm', 'do_package') |
102 | 98 | ||
103 | @OETestID(934) | ||
104 | def test_pr_service_deb_arch_dep(self): | 99 | def test_pr_service_deb_arch_dep(self): |
105 | self.run_test_pr_service('m4', 'deb', 'do_package') | 100 | self.run_test_pr_service('m4', 'deb', 'do_package') |
106 | 101 | ||
107 | @OETestID(933) | ||
108 | def test_pr_service_ipk_arch_dep(self): | 102 | def test_pr_service_ipk_arch_dep(self): |
109 | self.run_test_pr_service('m4', 'ipk', 'do_package') | 103 | self.run_test_pr_service('m4', 'ipk', 'do_package') |
110 | 104 | ||
111 | @OETestID(935) | ||
112 | def test_pr_service_rpm_arch_indep(self): | 105 | def test_pr_service_rpm_arch_indep(self): |
113 | self.run_test_pr_service('xcursor-transparent-theme', 'rpm', 'do_package') | 106 | self.run_test_pr_service('xcursor-transparent-theme', 'rpm', 'do_package') |
114 | 107 | ||
115 | @OETestID(937) | ||
116 | def test_pr_service_deb_arch_indep(self): | 108 | def test_pr_service_deb_arch_indep(self): |
117 | self.run_test_pr_service('xcursor-transparent-theme', 'deb', 'do_package') | 109 | self.run_test_pr_service('xcursor-transparent-theme', 'deb', 'do_package') |
118 | 110 | ||
119 | @OETestID(936) | ||
120 | def test_pr_service_ipk_arch_indep(self): | 111 | def test_pr_service_ipk_arch_indep(self): |
121 | self.run_test_pr_service('xcursor-transparent-theme', 'ipk', 'do_package') | 112 | self.run_test_pr_service('xcursor-transparent-theme', 'ipk', 'do_package') |
122 | 113 | ||
123 | @OETestID(1419) | ||
124 | def test_stopping_prservice_message(self): | 114 | def test_stopping_prservice_message(self): |
125 | port = get_free_port() | 115 | port = get_free_port() |
126 | 116 | ||