We use both -long-option and --long-option in tests. Switch to --long-option for consistency.
In the "llvm-readelf" mode, -long-option is discouraged as it conflicts with grouped short options and it is not accepted by GNU readelf.
While updating the tests, change llvm-readobj -s to llvm-readobj -S to reduce confusion ("s" is --section-headers in llvm-readobj but --symbols in llvm-readelf).
llvm-svn: 359649
35 lines
913 B
YAML
35 lines
913 B
YAML
# RUN: yaml2obj %s -o %t
|
|
# RUN: llvm-readobj --sections --elf-section-groups %t | FileCheck %s
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .group
|
|
Type: SHT_GROUP
|
|
Link: .symtab
|
|
Info: foo
|
|
Members:
|
|
- SectionOrType: 0xFF
|
|
- SectionOrType: 3
|
|
Symbols:
|
|
- Name: foo
|
|
- Binding: STB_GLOBAL
|
|
|
|
## Check we are able to produce SHT_GROUP section with a custom Type (0xFF).
|
|
# CHECK: Groups {
|
|
# CHECK-NEXT: Group {
|
|
# CHECK-NEXT: Name: .group
|
|
# CHECK-NEXT: Index: 1
|
|
# CHECK-NEXT: Link: 2
|
|
# CHECK-NEXT: Info: 1
|
|
# CHECK-NEXT: Type: COMDAT (0xFF)
|
|
# CHECK-NEXT: Signature: foo
|
|
# CHECK-NEXT: Section(s) in group [
|
|
# CHECK-NEXT: .strtab (3)
|
|
# CHECK-NEXT: ]
|
|
# CHECK-NEXT: }
|