aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/case.py
blob: 963aa8d3585bde84e0c6c4f8141cf855a981b0a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (C) 2016 Intel Corporation
# Released under the MIT license (see COPYING.MIT)

import subprocess

from oeqa.core.case import OETestCase

class OESDKTestCase(OETestCase):
    def _run(self, cmd):
        return subprocess.check_output(". %s > /dev/null; %s;" % \
                (self.tc.sdk_env, cmd), shell=True,
                stderr=subprocess.STDOUT, universal_newlines=True)