Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [yaml2obj] Support PT_GNU_STACK and PT_GNU_RELRO | Fangrui Song | 2019-09-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | PT_GNU_STACK is used in an llvm-objcopy test. I plan to use PT_GNU_RELRO in a patch to improve nested segment processing in llvm-objcopy (PR42963). Reviewed By: grimar Differential Revision: https://reviews.llvm.org/D67146 llvm-svn: 370857 | ||||
* | [llvm-objcopy][NFC] Consistenly use two dashes for flags in tests. | Jordan Rupprecht | 2019-01-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | Summary: As pointed out in D53667, our use of hyphens in flags can be inconsistent, mixing `-` with `--`. This change makes all long style flags use `--`. Automatically changed via: ``` find test/tools/llvm-objcopy/ELF -type f | xargs sed -i 's/ -\([a-zA-Z]\{3\}\)/ --\1/g' ``` Two false positives were manually fixed/reverted. Reviewers: jhenderson, espindola, alexshap Reviewed By: jhenderson Subscribers: emaste, javed.absar, arichardson, fedor.sergeev, jakehehrlich, llvm-commits Differential Revision: https://reviews.llvm.org/D56513 llvm-svn: 350944 | ||||
* | [llvm-objcopy] Move elf-specific tests into subfolder | Alexander Shaposhnikov | 2018-11-30 | 1 | -0/+111 |
In this diff the elf-specific tests are moved into the subfolder llvm-objcopy/ELF (the change was discussed in the comments on https://reviews.llvm.org/D54674). A separate code reivew wasn't sent for this change since Phabricator is failing to create such a large diff. Test plan: make check-all make check-llvm-tools make check-llvm-tools-llvm-objcopy llvm-svn: 347958 |