diff options
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index 873a66457a..02cb370f2e 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py | |||
@@ -70,9 +70,9 @@ class BaseTarget(object): | |||
70 | def stop(self): | 70 | def stop(self): |
71 | pass | 71 | pass |
72 | 72 | ||
73 | @abstractmethod | ||
74 | def restart(self, params=None): | 73 | def restart(self, params=None): |
75 | pass | 74 | self.stop() |
75 | self.start(params) | ||
76 | 76 | ||
77 | def run(self, cmd, timeout=None): | 77 | def run(self, cmd, timeout=None): |
78 | return self.connection.run(cmd, timeout) | 78 | return self.connection.run(cmd, timeout) |
@@ -170,6 +170,3 @@ class SimpleRemoteTarget(BaseTarget): | |||
170 | self.connection = None | 170 | self.connection = None |
171 | self.ip = None | 171 | self.ip = None |
172 | self.server_ip = None | 172 | self.server_ip = None |
173 | |||
174 | def restart(self, params=None): | ||
175 | pass | ||