summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-13 22:43:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-14 11:14:40 +0000
commitdf63ae7edd544c5d86b549345ad1ca1c9deacc41 (patch)
tree4a471b681d2307af374389db72d728ed6fb3be74 /meta
parent629c9f1cacb0d1af8512d184045309d4f4887354 (diff)
downloadpoky-df63ae7edd544c5d86b549345ad1ca1c9deacc41.tar.gz
oeqa/utils/commands: Avoid unclosed file warnings
Avoid warnings such as: meta/lib/oeqa/utils/commands.py:213: ResourceWarning: unclosed file <_io.BufferedReader name=4> return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options) (From OE-Core rev: 6a68c42de08cffbadb59ebda63fa5e19f6e5acef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/utils/commands.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py
index 0d9cf23fe4..01add68689 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -146,6 +146,9 @@ class Command(object):
146 # At this point we know that the process has closed stdout/stderr, so 146 # At this point we know that the process has closed stdout/stderr, so
147 # it is safe and necessary to wait for the actual process completion. 147 # it is safe and necessary to wait for the actual process completion.
148 self.status = self.process.wait() 148 self.status = self.process.wait()
149 self.process.stdout.close()
150 if self.process.stderr:
151 self.process.stderr.close()
149 152
150 self.log.debug("Command '%s' returned %d as exit code." % (self.cmd, self.status)) 153 self.log.debug("Command '%s' returned %d as exit code." % (self.cmd, self.status))
151 # logging the complete output is insane 154 # logging the complete output is insane