summaryrefslogtreecommitdiff
path: root/import-layers/yocto-poky/meta/lib/oeqa/core/target/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/yocto-poky/meta/lib/oeqa/core/target/__init__.py')
-rw-r--r--import-layers/yocto-poky/meta/lib/oeqa/core/target/__init__.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/import-layers/yocto-poky/meta/lib/oeqa/core/target/__init__.py b/import-layers/yocto-poky/meta/lib/oeqa/core/target/__init__.py
deleted file mode 100644
index d2468bc25..000000000
--- a/import-layers/yocto-poky/meta/lib/oeqa/core/target/__init__.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright (C) 2016 Intel Corporation
-# Released under the MIT license (see COPYING.MIT)
-
-from abc import abstractmethod
-
-class OETarget(object):
-
- def __init__(self, logger, *args, **kwargs):
- self.logger = logger
-
- @abstractmethod
- def start(self):
- pass
-
- @abstractmethod
- def stop(self):
- pass
-
- @abstractmethod
- def run(self, cmd, timeout=None):
- pass
-
- @abstractmethod
- def copyTo(self, localSrc, remoteDst):
- pass
-
- @abstractmethod
- def copyFrom(self, remoteSrc, localDst):
- pass
-
- @abstractmethod
- def copyDirTo(self, localSrc, remoteDst):
- pass