mirror of
git://git.yoctoproject.org/poky
synced 2026-08-17 06:51:54 +00:00
oeqs/sdk*/case: Use universal_newlines for subprocess calls
This removes the need for some of the ugly decode calls with hardcoded locales. (From OE-Core rev: a14dddc77e553d2fa90d12576503dd3fc2e52bbc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
78195a23b0
commit
23137a9897
@ -9,4 +9,4 @@ class OESDKTestCase(OETestCase):
|
||||
def _run(self, cmd):
|
||||
return subprocess.check_output(". %s > /dev/null; %s;" % \
|
||||
(self.tc.sdk_env, cmd), shell=True,
|
||||
stderr=subprocess.STDOUT).decode("utf-8")
|
||||
stderr=subprocess.STDOUT, universal_newlines=True)
|
||||
|
||||
@ -18,4 +18,4 @@ class OESDKExtTestCase(OESDKTestCase):
|
||||
|
||||
return subprocess.check_output(". %s > /dev/null;"\
|
||||
" %s;" % (self.tc.sdk_env, cmd), stderr=subprocess.STDOUT,
|
||||
shell=True, env=env).decode("utf-8")
|
||||
shell=True, env=env, universal_newlines=True)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user