mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +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
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
RUN: llvm-readobj --dyn-syms %p/Inputs/elf-versioning-test.i386 \
|
|
RUN: | FileCheck %s -check-prefix ELF
|
|
RUN: llvm-readobj --dyn-syms %p/Inputs/elf-versioning-test.i386 \
|
|
RUN: | FileCheck %s -check-prefix ELF32
|
|
RUN: llvm-readobj --dyn-syms %p/Inputs/elf-versioning-test.x86_64 \
|
|
RUN: | FileCheck %s -check-prefix ELF
|
|
RUN: llvm-readobj --dyn-syms %p/Inputs/elf-versioning-test.x86_64 \
|
|
RUN: | FileCheck %s -check-prefix ELF64
|
|
|
|
ELF: DynamicSymbols [
|
|
ELF: Symbol {
|
|
ELF: Name: foo@@VER2
|
|
ELF: Binding: Global
|
|
ELF: Type: Function
|
|
ELF: Section: .text
|
|
ELF: }
|
|
ELF: Symbol {
|
|
ELF: Name: foo@VER1
|
|
ELF: Binding: Global
|
|
ELF: Type: Function
|
|
ELF: Section: .text
|
|
ELF: }
|
|
ELF: Symbol {
|
|
ELF: Name: unversioned_define
|
|
ELF: Binding: Global
|
|
ELF: Type: Function
|
|
ELF: Section: .text
|
|
ELF: }
|
|
ELF: ]
|
|
|
|
ELF32: DynamicSymbols [
|
|
ELF32: Symbol {
|
|
ELF32: Name: puts@GLIBC_2.0
|
|
ELF32: Binding: Global
|
|
ELF32: Type: Function
|
|
ELF32: Section: Undefined (0x0)
|
|
ELF32: }
|
|
ELF32: ]
|
|
ELF64: DynamicSymbols [
|
|
ELF64: Symbol {
|
|
ELF64: Name: puts@GLIBC_2.2.5
|
|
ELF64: Binding: Global
|
|
ELF64: Type: Function
|
|
ELF64: Section: Undefined (0x0)
|
|
ELF64: }
|
|
ELF64: ]
|