summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/prservice.py
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/selftest/cases/prservice.py
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/selftest/cases/prservice.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/prservice.py10
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
6import oeqa.utils.ftools as ftools 6import oeqa.utils.ftools as ftools
7from oeqa.selftest.case import OESelftestTestCase 7from oeqa.selftest.case import OESelftestTestCase
8from oeqa.utils.commands import runCmd, bitbake, get_bb_var 8from oeqa.utils.commands import runCmd, bitbake, get_bb_var
9from oeqa.core.decorator.oeid import OETestID
10from oeqa.utils.network import get_free_port 9from oeqa.utils.network import get_free_port
11 10
12class BitbakePrTests(OESelftestTestCase): 11class 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