mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
b2d3b0af04
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
29 lines
810 B
YAML
29 lines
810 B
YAML
# RUN: yaml2obj %s -o %t
|
|
# RUN: llvm-readobj --sections %t | FileCheck -check-prefix=OBJ %s
|
|
# RUN: obj2yaml %t | FileCheck -check-prefix=YAML %s
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS32
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_386
|
|
Sections:
|
|
- Name: .debug_line
|
|
Type: SHT_PROGBITS
|
|
Flags: [ SHF_COMPRESSED ]
|
|
|
|
# OBJ: Sections [
|
|
# OBJ: Section {
|
|
# OBJ: Index: 1
|
|
# OBJ-NEXT: Name: .debug_line (1)
|
|
# OBJ-NEXT: Type: SHT_PROGBITS (0x1)
|
|
# OBJ-NEXT: Flags [ (0x800)
|
|
# OBJ-NEXT: SHF_COMPRESSED (0x800)
|
|
# OBJ-NEXT: ]
|
|
|
|
# YAML: Sections:
|
|
# YAML-NEXT: - Name: .debug_line
|
|
# YAML-NEXT: Type: SHT_PROGBITS
|
|
# YAML-NEXT: Flags: [ SHF_COMPRESSED ]
|