mirror of
https://git.yoctoproject.org/poky
synced 2026-09-12 06:49:32 +02:00
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>
This commit is contained in:
@@ -3,7 +3,6 @@ import time
|
||||
|
||||
from oeqa.runtime.case import OERuntimeTestCase
|
||||
from oeqa.core.decorator.depends import OETestDepends
|
||||
from oeqa.core.decorator.oeid import OETestID
|
||||
from oeqa.core.decorator.data import skipIfDataVar, skipIfNotDataVar
|
||||
from oeqa.runtime.decorator.package import OEHasPackage
|
||||
from oeqa.core.decorator.data import skipIfNotFeature
|
||||
@@ -78,12 +77,10 @@ class SystemdBasicTests(SystemdTest):
|
||||
def test_systemd_basic(self):
|
||||
self.systemctl('--version')
|
||||
|
||||
@OETestID(551)
|
||||
@OETestDepends(['systemd.SystemdBasicTests.test_systemd_basic'])
|
||||
def test_systemd_list(self):
|
||||
self.systemctl('list-unit-files')
|
||||
|
||||
@OETestID(550)
|
||||
@OETestDepends(['systemd.SystemdBasicTests.test_systemd_basic'])
|
||||
def test_systemd_failed(self):
|
||||
settled, output = self.settle()
|
||||
@@ -104,7 +101,6 @@ class SystemdServiceTests(SystemdTest):
|
||||
def test_systemd_status(self):
|
||||
self.systemctl('status --full', 'avahi-daemon.service')
|
||||
|
||||
@OETestID(695)
|
||||
@OETestDepends(['systemd.SystemdServiceTests.test_systemd_status'])
|
||||
def test_systemd_stop_start(self):
|
||||
self.systemctl('stop', 'avahi-daemon.service')
|
||||
@@ -113,7 +109,6 @@ class SystemdServiceTests(SystemdTest):
|
||||
self.systemctl('start','avahi-daemon.service')
|
||||
self.systemctl('is-active', 'avahi-daemon.service', verbose=True)
|
||||
|
||||
@OETestID(696)
|
||||
@OETestDepends(['systemd.SystemdServiceTests.test_systemd_status'])
|
||||
def test_systemd_disable_enable(self):
|
||||
self.systemctl('disable', 'avahi-daemon.service')
|
||||
|
||||
Reference in New Issue
Block a user