summaryrefslogtreecommitdiffstats
path: root/lib/oeqa/runtime/miutils/targets/oeqatarget.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oeqa/runtime/miutils/targets/oeqatarget.py')
-rw-r--r--lib/oeqa/runtime/miutils/targets/oeqatarget.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/oeqa/runtime/miutils/targets/oeqatarget.py b/lib/oeqa/runtime/miutils/targets/oeqatarget.py
new file mode 100644
index 00000000..a9f7f1b4
--- /dev/null
+++ b/lib/oeqa/runtime/miutils/targets/oeqatarget.py
@@ -0,0 +1,11 @@
1
2class OEQATarget(object):
3
4 def __init__(self, target):
5 self.target = target
6
7 def run(self, cmd):
8 return self.target.run(cmd)
9
10 def copy_to(self, source, destination_dir):
11 self.target.copyTo(source, destination_dir)