summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/oetest.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/oetest.py')
-rw-r--r--meta/lib/oeqa/oetest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py
index 0be61c2f0a..a7c7203201 100644
--- a/meta/lib/oeqa/oetest.py
+++ b/meta/lib/oeqa/oetest.py
@@ -216,7 +216,7 @@ class oeSDKTest(oeTest):
216 return False 216 return False
217 217
218 def _run(self, cmd): 218 def _run(self, cmd):
219 return subprocess.check_output(cmd, shell=True) 219 return subprocess.check_output(". %s; " % self.tc.sdkenv + cmd, shell=True)
220 220
221def getmodule(pos=2): 221def getmodule(pos=2):
222 # stack returns a list of tuples containg frame information 222 # stack returns a list of tuples containg frame information