summaryrefslogtreecommitdiffstats
path: root/lib/oeqa/runtime/miutils/targets/oeqatarget.py
blob: a9f7f1b4221ef17f9d87571ed4c5db8564d515c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
class OEQATarget(object):

    def __init__(self, target):
        self.target = target

    def run(self, cmd):
        return self.target.run(cmd)

    def copy_to(self, source, destination_dir):
        self.target.copyTo(source, destination_dir)