
18 Apr
2020
18 Apr
'20
1:29 a.m.
Rather than having a few tests handle this themselves, create the temporary directory in the setUp() method and remove it in tearDown(). This will make it easier to add more tests.
Only testOutput and testGit() actually need it, but it doesn't add to the test time noticeably to do this for all tests in this file.
Signed-off-by: Simon Glass sjg@chromium.org ---
Changes in v2: None
tools/buildman/test.py | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-)
Applied to u-boot-dm, thanks!