diff options
Diffstat (limited to 'meta/lib/oeqa/oetest.py')
-rw-r--r-- | meta/lib/oeqa/oetest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index a50f9d8187..4211ffc379 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py | |||
@@ -132,7 +132,7 @@ class oeSDKTest(oeTest): | |||
132 | return False | 132 | return False |
133 | 133 | ||
134 | def _run(self, cmd): | 134 | def _run(self, cmd): |
135 | return subprocess.check_output(". %s > /dev/null; %s;" % (self.tc.sdkenv, cmd), shell=True) | 135 | return subprocess.check_output(". %s > /dev/null; %s;" % (self.tc.sdkenv, cmd), shell=True).decode("utf-8") |
136 | 136 | ||
137 | class oeSDKExtTest(oeSDKTest): | 137 | class oeSDKExtTest(oeSDKTest): |
138 | def _run(self, cmd): | 138 | def _run(self, cmd): |
@@ -144,7 +144,7 @@ class oeSDKExtTest(oeSDKTest): | |||
144 | env['PATH'] = avoid_paths_in_environ(paths_to_avoid) | 144 | env['PATH'] = avoid_paths_in_environ(paths_to_avoid) |
145 | 145 | ||
146 | return subprocess.check_output(". %s > /dev/null;"\ | 146 | return subprocess.check_output(". %s > /dev/null;"\ |
147 | " %s;" % (self.tc.sdkenv, cmd), shell=True, env=env) | 147 | " %s;" % (self.tc.sdkenv, cmd), shell=True, env=env).decode("utf-8") |
148 | 148 | ||
149 | def getmodule(pos=2): | 149 | def getmodule(pos=2): |
150 | # stack returns a list of tuples containg frame information | 150 | # stack returns a list of tuples containg frame information |