mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
053d07b664
Create COFF/, ELF/, and Minidump and move tests there. Also * Rename `*.test` to `*.yaml` * For yaml2obj RUN lines, use `-o %t` instead of `> %t` for consistency. We still have tests that check stdout is the default output, e.g. multi-doc.test * Update tests to consistently use `##` for comments. `#` is for RUN and CHECK lines. * Merge symboless-relocation.yaml and invalid-symboless-relocation.yaml to ELF/relocation-implicit-symbol-index.test Reviewed By: grimar, jhenderson Differential Revision: https://reviews.llvm.org/D70264
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
# RUN: yaml2obj --docnum=1 %s -o %t1
|
|
# RUN: llvm-readobj --sections %t1 | FileCheck %s
|
|
|
|
# CHECK: Name: .rela.text
|
|
# CHECK-NEXT: Type: SHT_RELA
|
|
# CHECK-NEXT: Flags [
|
|
# CHECK-NEXT: ]
|
|
# CHECK-NEXT: Address:
|
|
# CHECK-NEXT: Offset:
|
|
# CHECK-NEXT: Size:
|
|
# CHECK-NEXT: Link:
|
|
# CHECK-NEXT: Info: 12345
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .rela.text
|
|
Type: SHT_RELA
|
|
Info: 12345
|
|
Relocations:
|
|
|
|
## Check we report an error when a relocation section references an unknown section via its Info field.
|
|
|
|
# RUN: not yaml2obj --docnum=2 %s 2>&1 | FileCheck %s --implicit-check-not=error --check-prefix=ERR
|
|
|
|
# ERR: error: unknown section referenced: '.unknown1' by YAML section '.foo'
|
|
# ERR: error: unknown section referenced: '.unknown2' by YAML section '.bar'
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .foo
|
|
Type: SHT_RELA
|
|
Info: .unknown1
|
|
Relocations:
|
|
- Name: .bar
|
|
Type: SHT_RELA
|
|
Info: .unknown2
|
|
Relocations:
|
|
- Name: .zed
|
|
Type: SHT_RELA
|
|
Info: 0xFF
|
|
Relocations:
|