diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-24 07:22:58 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-10-15 08:40:02 -0600 |
commit | 8dc60f99f9a2fe7873a753f1ab0254efd3cd6bd4 (patch) | |
tree | eed0ebd5763a9d7bbfeedeeb283b4eb36f97c112 /tools/binman/elf_test.py | |
parent | e9d2ee3862488e98278a0201263c276c12729484 (diff) | |
download | u-boot-8dc60f99f9a2fe7873a753f1ab0254efd3cd6bd4.tar.gz u-boot-8dc60f99f9a2fe7873a753f1ab0254efd3cd6bd4.tar.bz2 u-boot-8dc60f99f9a2fe7873a753f1ab0254efd3cd6bd4.zip |
binman: Use the Makefile for u_boot_binman_syms_bad
Remove this file from git and instead build it using the Makefile.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/elf_test.py')
-rw-r--r-- | tools/binman/elf_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/elf_test.py b/tools/binman/elf_test.py index a913970150..1ee5d9d57c 100644 --- a/tools/binman/elf_test.py +++ b/tools/binman/elf_test.py @@ -72,7 +72,7 @@ def BuildElfTestFiles(target_dir): os.path.join(testdir, 'Makefile'), 'SRC=%s/' % testdir, 'bss_data', 'u_boot_ucode_ptr', 'u_boot_no_ucode_ptr', 'u_boot_binman_syms', 'u_boot_binman_syms.bin', - 'u_boot_binman_syms_size') + 'u_boot_binman_syms_size', 'u_boot_binman_syms_bad') class TestElf(unittest.TestCase): @@ -134,7 +134,7 @@ class TestElf(unittest.TestCase): """ entry = FakeEntry(10) section = FakeSection() - elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms_bad') + elf_fname = self.ElfTestFile('u_boot_binman_syms_bad') self.assertEqual(elf.LookupAndWriteSymbols(elf_fname, entry, section), None) |