mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
tools: buildman: Remove useless mkdir() in Make() in test.py
In the 'Make' function, the codes tries to create a directory if current stage is 'build'. But the directory isn't used at all anywhere. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
bc750bca12
commit
578b637203
1 changed files with 0 additions and 8 deletions
|
@ -156,14 +156,6 @@ class TestBuild(unittest.TestCase):
|
||||||
result.return_code = commit.return_code
|
result.return_code = commit.return_code
|
||||||
result.stderr = (''.join(commit.error_list)
|
result.stderr = (''.join(commit.error_list)
|
||||||
% {'basedir' : base_dir + '/.bm-work/00/'})
|
% {'basedir' : base_dir + '/.bm-work/00/'})
|
||||||
if stage == 'build':
|
|
||||||
target_dir = None
|
|
||||||
for arg in args:
|
|
||||||
if arg.startswith('O='):
|
|
||||||
target_dir = arg[2:]
|
|
||||||
|
|
||||||
if not os.path.isdir(target_dir):
|
|
||||||
os.mkdir(target_dir)
|
|
||||||
|
|
||||||
result.combined = result.stdout + result.stderr
|
result.combined = result.stdout + result.stderr
|
||||||
return result
|
return result
|
||||||
|
|
Loading…
Reference in a new issue