Re: [PATCH] kunit: tool: misc fixes (unused vars, imports, leaked files)

From: Brendan Higgins
Date: Mon Oct 04 2021 - 18:36:01 EST


On Tue, Sep 28, 2021 at 3:11 PM Daniel Latypov <dlatypov@xxxxxxxxxx> wrote:
>
> Drop some variables in unit tests that were unused and/or add assertions
> based on them.
>
> For ExitStack, it was imported, but the `es` variable wasn't used so it
> didn't do anything, and we were leaking the file objects.
> Refactor it to just use nested `with` statements to properly close them.
>
> And drop the direct use of .close() on file objects in the kunit tool
> unit test, as these can be leaked if test assertions fail.
>
> Signed-off-by: Daniel Latypov <dlatypov@xxxxxxxxxx>

Reviewed-by: Brendan Higgins <brendanhiggins@xxxxxxxxxx>