summaryrefslogtreecommitdiff
path: root/import-layers/yocto-poky/meta/lib/oeqa/sdkext/case.py
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/yocto-poky/meta/lib/oeqa/sdkext/case.py')
-rw-r--r--import-layers/yocto-poky/meta/lib/oeqa/sdkext/case.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/import-layers/yocto-poky/meta/lib/oeqa/sdkext/case.py b/import-layers/yocto-poky/meta/lib/oeqa/sdkext/case.py
deleted file mode 100644
index 21b718831..000000000
--- a/import-layers/yocto-poky/meta/lib/oeqa/sdkext/case.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright (C) 2016 Intel Corporation
-# Released under the MIT license (see COPYING.MIT)
-
-import os
-import subprocess
-
-from oeqa.utils import avoid_paths_in_environ
-from oeqa.sdk.case import OESDKTestCase
-
-class OESDKExtTestCase(OESDKTestCase):
- def _run(self, cmd):
- # extensible sdk shows a warning if found bitbake in the path
- # because can cause contamination, i.e. use devtool from
- # poky/scripts instead of eSDK one.
- env = os.environ.copy()
- paths_to_avoid = ['bitbake/bin', 'poky/scripts']
- env['PATH'] = avoid_paths_in_environ(paths_to_avoid)
-
- return subprocess.check_output(". %s > /dev/null;"\
- " %s;" % (self.tc.sdk_env, cmd), stderr=subprocess.STDOUT,
- shell=True, env=env, universal_newlines=True)