diff options
author | Simon Glass <sjg@chromium.org> | 2018-10-01 21:12:41 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-10-08 07:34:34 -0600 |
commit | e0e6275f4c6cbcf2b975dbd9771b14f21eb51a36 (patch) | |
tree | 79a413610800f0c24082f194b3c4d2c862b1e5a1 /tools/binman/elf_test.py | |
parent | ed59e005e6ed388609749d52e98804b76db095d1 (diff) | |
download | u-boot-e0e6275f4c6cbcf2b975dbd9771b14f21eb51a36.tar.gz |
binman: Fix up removal of temporary directories
At present 'make check' leaves some temporary directories around. Part of
this is because we call tools.PrepareOutputDir() twice in some cases,
without calling tools.FinaliseOutputDir() in between.
Fix this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/elf_test.py')
-rw-r--r-- | tools/binman/elf_test.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/binman/elf_test.py b/tools/binman/elf_test.py index c16f71401d..b68530c19b 100644 --- a/tools/binman/elf_test.py +++ b/tools/binman/elf_test.py @@ -10,6 +10,7 @@ import unittest import elf import test_util +import tools binman_dir = os.path.dirname(os.path.realpath(sys.argv[0])) @@ -46,6 +47,10 @@ class FakeSection: class TestElf(unittest.TestCase): + @classmethod + def setUpClass(self): + tools.SetInputDirs(['.']) + def testAllSymbols(self): """Test that we can obtain a symbol from the ELF file""" fname = os.path.join(binman_dir, 'test', 'u_boot_ucode_ptr') |