summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/case.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/sdk/case.py')
-rw-r--r--meta/lib/oeqa/sdk/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/case.py b/meta/lib/oeqa/sdk/case.py
index 43fc00aaa2..ebb03af9eb 100644
--- a/meta/lib/oeqa/sdk/case.py
+++ b/meta/lib/oeqa/sdk/case.py
@@ -12,7 +12,7 @@ from oeqa.core.case import OETestCase
12class OESDKTestCase(OETestCase): 12class OESDKTestCase(OETestCase):
13 def _run(self, cmd): 13 def _run(self, cmd):
14 return subprocess.check_output(". %s > /dev/null; %s;" % \ 14 return subprocess.check_output(". %s > /dev/null; %s;" % \
15 (self.tc.sdk_env, cmd), shell=True, 15 (self.tc.sdk_env, cmd), shell=True, executable="/bin/bash",
16 stderr=subprocess.STDOUT, universal_newlines=True) 16 stderr=subprocess.STDOUT, universal_newlines=True)
17 17
18 def fetch(self, workdir, dl_dir, url, archive=None): 18 def fetch(self, workdir, dl_dir, url, archive=None):