selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle
[ Upstream commit2d869f0b45
] The following output can bee seen when the test is executed: test_flush_context (tpm2_tests.SpaceTest) ... \ /usr/lib64/python3.6/unittest/case.py:605: ResourceWarning: \ unclosed file <_io.FileIO name='/dev/tpmrm0' mode='rb+' closefd=True> An instance of Client does not implicitly close /dev/tpm* handle, once it gets destroyed. Close the file handle in the class destructor Client.__del__(). Fixes:6ea3dfe1e0
("selftests: add TPM 2.0 tests") Cc: Shuah Khan <shuah@kernel.org> Cc: linux-kselftest@vger.kernel.org Cc: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Stefan Berger <stefanb@linux.ibm.com> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Родитель
497d736784
Коммит
b6b87460f4
|
@ -370,6 +370,10 @@ class Client:
|
|||
fcntl.fcntl(self.tpm, fcntl.F_SETFL, flags)
|
||||
self.tpm_poll = select.poll()
|
||||
|
||||
def __del__(self):
|
||||
if self.tpm:
|
||||
self.tpm.close()
|
||||
|
||||
def close(self):
|
||||
self.tpm.close()
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче