summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/systemd.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/systemd.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/systemd.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/lib/oeqa/runtime/cases/systemd.py b/meta/lib/oeqa/runtime/cases/systemd.py
index 460b8fc3a1..db9da465ee 100644
--- a/meta/lib/oeqa/runtime/cases/systemd.py
+++ b/meta/lib/oeqa/runtime/cases/systemd.py
@@ -3,7 +3,6 @@ import time
3 3
4from oeqa.runtime.case import OERuntimeTestCase 4from oeqa.runtime.case import OERuntimeTestCase
5from oeqa.core.decorator.depends import OETestDepends 5from oeqa.core.decorator.depends import OETestDepends
6from oeqa.core.decorator.oeid import OETestID
7from oeqa.core.decorator.data import skipIfDataVar, skipIfNotDataVar 6from oeqa.core.decorator.data import skipIfDataVar, skipIfNotDataVar
8from oeqa.runtime.decorator.package import OEHasPackage 7from oeqa.runtime.decorator.package import OEHasPackage
9from oeqa.core.decorator.data import skipIfNotFeature 8from oeqa.core.decorator.data import skipIfNotFeature
@@ -78,12 +77,10 @@ class SystemdBasicTests(SystemdTest):
78 def test_systemd_basic(self): 77 def test_systemd_basic(self):
79 self.systemctl('--version') 78 self.systemctl('--version')
80 79
81 @OETestID(551)
82 @OETestDepends(['systemd.SystemdBasicTests.test_systemd_basic']) 80 @OETestDepends(['systemd.SystemdBasicTests.test_systemd_basic'])
83 def test_systemd_list(self): 81 def test_systemd_list(self):
84 self.systemctl('list-unit-files') 82 self.systemctl('list-unit-files')
85 83
86 @OETestID(550)
87 @OETestDepends(['systemd.SystemdBasicTests.test_systemd_basic']) 84 @OETestDepends(['systemd.SystemdBasicTests.test_systemd_basic'])
88 def test_systemd_failed(self): 85 def test_systemd_failed(self):
89 settled, output = self.settle() 86 settled, output = self.settle()
@@ -104,7 +101,6 @@ class SystemdServiceTests(SystemdTest):
104 def test_systemd_status(self): 101 def test_systemd_status(self):
105 self.systemctl('status --full', 'avahi-daemon.service') 102 self.systemctl('status --full', 'avahi-daemon.service')
106 103
107 @OETestID(695)
108 @OETestDepends(['systemd.SystemdServiceTests.test_systemd_status']) 104 @OETestDepends(['systemd.SystemdServiceTests.test_systemd_status'])
109 def test_systemd_stop_start(self): 105 def test_systemd_stop_start(self):
110 self.systemctl('stop', 'avahi-daemon.service') 106 self.systemctl('stop', 'avahi-daemon.service')
@@ -113,7 +109,6 @@ class SystemdServiceTests(SystemdTest):
113 self.systemctl('start','avahi-daemon.service') 109 self.systemctl('start','avahi-daemon.service')
114 self.systemctl('is-active', 'avahi-daemon.service', verbose=True) 110 self.systemctl('is-active', 'avahi-daemon.service', verbose=True)
115 111
116 @OETestID(696)
117 @OETestDepends(['systemd.SystemdServiceTests.test_systemd_status']) 112 @OETestDepends(['systemd.SystemdServiceTests.test_systemd_status'])
118 def test_systemd_disable_enable(self): 113 def test_systemd_disable_enable(self):
119 self.systemctl('disable', 'avahi-daemon.service') 114 self.systemctl('disable', 'avahi-daemon.service')