summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/targetcontrol.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-03 11:29:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-03 20:17:29 +0100
commit61d21bd035b5d821b3a285702d185c4ad57f4dac (patch)
tree3af8db5664579172f76e562542a3d2735d84974b /meta/lib/oeqa/targetcontrol.py
parente855b384f37e0d781a80fcd65daa23b676e4efac (diff)
downloadpoky-61d21bd035b5d821b3a285702d185c4ad57f4dac.tar.gz
oeqa/targetcontrol: Attempt to fix log closure warning message
We continue to see the warning message: WARNING: lib/bb/daemonize.py:76: ResourceWarning: unclosed file <_io.TextIOWrapper name='build/tmp/work/qemux86_64-poky-linux/oe-selftest-image/1.0-r0/testimage/qemurunner_log.20200703011821' mode='a' encoding='UTF-8'> I've been unable to reprodue this but believe its caused by garbage collection of the FileHandler used in QemuTarget being delayed until after a new tinfoil instance is created by a subseqent test. Force the log file to be closed when we stop using it to avoid this. [YOCTO #13961] (From OE-Core rev: e15cc7801ec611f867f5b31028741722ac718c87) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r--meta/lib/oeqa/targetcontrol.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index 7bbba6016b..19f5a4ea7e 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -187,6 +187,7 @@ class QemuTarget(BaseTarget):
187 except: 187 except:
188 pass 188 pass
189 self.logger.removeHandler(self.loggerhandler) 189 self.logger.removeHandler(self.loggerhandler)
190 self.loggerhandler.close()
190 self.connection = None 191 self.connection = None
191 self.ip = None 192 self.ip = None
192 self.server_ip = None 193 self.server_ip = None