[PATCH] D97666: [llvm-objcopy][llvm-strip][test] Improve testing
James Henderson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 1 01:14:10 PST 2021
jhenderson created this revision.
Herald added subscribers: abrachet, emaste.
Herald added a reviewer: alexshap.
Herald added a reviewer: rupprecht.
jhenderson requested review of this revision.
Herald added subscribers: llvm-commits, MaskRay.
Herald added a project: LLVM.
This patch adds a number of new test cases that cover various llvm-objcopy and llvm-strip features that had missing test coverage of various descriptions:
- --add-section - checked the shdr properties, not just the content.
- Dedicated test case for --add-symbol when there are many sections.
- Show that --change-start accepts negative values without overflow. This was previously present but got lost between review versions.
- --dump-section - show that multiple sections can be dumped simultaneously to different files, and that an error is reported when a section cannot be found.
- --globalize-symbol(s) - show that symbols that are not mentioned are not globalized, if they would otherwise be, and that missing symbols from the list do not cause problems.
- --keep-global-symbol - show that the --regex option can be used in conjunction with this option.
- --keep-symbol - show that the --regex option can be used in conjunction with this option.
- --localize-symbol(s) - show that symbols that are not mentioned are not localized, if they would otherwise be, and that missing symbols from the list do not cause problems.
- --prefix-alloc-sections - show the behaviour of an empty string argument and multiple arguments.
- --prefix-symbols - show the behaviour of an empty string argument and multiple arguments. Also show the option applies to undefined symbols.
- --redefine-symbol - show that symbols with no name can be renamed, that it is not an error if a symbol is not specified, and that the option doesn't chain (i.e. --redefine-sym a=b --redefine-sym b=c does not redefine a as c).
- --rename-section - show that all section flags are preserved if none are specified. Also show that the option does not chain.
- --set-section-alignment - show that only specified sections have their alignments changed.
- --set-section-flags - show which section flags are preserved when this option is used. Also show that unspecified sections are not affected.
- --preserve-dates - show that -p is an alias of --preserve-dates.
- --strip-symbol - show that --regex works with this option for llvm-objcopy as well as llvm-strip.
- --strip-unneeded-symbol(s) - show more clearly that needed symbols are not stripped even if requested by this option.
- --allow-broken-links - show the sh_link of a symbol table is set to 0 when its string table has been removed when this option is specified.
- --weaken-symbol(s) - show that symbols that are not mentioned are not weakened, if they would otherwise be, and that missing symbols from the list do not cause problems.
- --wildcard - show the wildcard behaviour for several options that were previously unchecked.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D97666
Files:
llvm/test/tools/llvm-objcopy/ELF/add-section.test
llvm/test/tools/llvm-objcopy/ELF/add-symbol-many-sections.test
llvm/test/tools/llvm-objcopy/ELF/change-entry-point.test
llvm/test/tools/llvm-objcopy/ELF/dump-section.test
llvm/test/tools/llvm-objcopy/ELF/globalize.test
llvm/test/tools/llvm-objcopy/ELF/keep-global-symbols.test
llvm/test/tools/llvm-objcopy/ELF/keep-symbol.test
llvm/test/tools/llvm-objcopy/ELF/localize.test
llvm/test/tools/llvm-objcopy/ELF/prefix-alloc-sections.test
llvm/test/tools/llvm-objcopy/ELF/prefix-symbols.test
llvm/test/tools/llvm-objcopy/ELF/redefine-symbol.test
llvm/test/tools/llvm-objcopy/ELF/rename-section-flag-preserved.test
llvm/test/tools/llvm-objcopy/ELF/rename-section.test
llvm/test/tools/llvm-objcopy/ELF/set-section-alignment.test
llvm/test/tools/llvm-objcopy/ELF/set-section-flags-preserved.test
llvm/test/tools/llvm-objcopy/ELF/set-section-flags.test
llvm/test/tools/llvm-objcopy/ELF/strip-preserve-mtime.test
llvm/test/tools/llvm-objcopy/ELF/strip-symbol.test
llvm/test/tools/llvm-objcopy/ELF/strip-unneeded.test
llvm/test/tools/llvm-objcopy/ELF/symtab-error-on-remove-strtab.test
llvm/test/tools/llvm-objcopy/ELF/weaken.test
llvm/test/tools/llvm-objcopy/ELF/wildcard-flags.test
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D97666.327047.patch
Type: text/x-patch
Size: 38860 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210301/5dc0a5bb/attachment.bin>
More information about the llvm-commits
mailing list