diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/oetest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index 16705cc3fe..47ea3b259f 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py | |||
@@ -124,7 +124,7 @@ class oeSDKTest(oeTest): | |||
124 | return False | 124 | return False |
125 | 125 | ||
126 | def _run(self, cmd): | 126 | def _run(self, cmd): |
127 | return subprocess.check_output(". %s; " % self.tc.sdkenv + cmd, shell=True) | 127 | return subprocess.check_output(". %s > /dev/null; %s;" % (self.tc.sdkenv, cmd), shell=True) |
128 | 128 | ||
129 | def getmodule(pos=2): | 129 | def getmodule(pos=2): |
130 | # stack returns a list of tuples containg frame information | 130 | # stack returns a list of tuples containg frame information |