buildman: Create temp directory in test setup
authorSimon Glass <sjg@chromium.org>
Thu, 9 Apr 2020 21:08:31 +0000 (15:08 -0600)
committerSimon Glass <sjg@chromium.org>
Tue, 21 Apr 2020 12:33:47 +0000 (06:33 -0600)
commitaf43065f8def868e81c6b20b7c1ee7874bdcf0fb
tree8abd41872204b956b893bbf81775442197ecf25a
parentc3bc4f1fca360648894593cd02386456f7047069
buildman: Create temp directory in test setup

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>
tools/buildman/test.py