1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/tools/llvm-lipo/info-invalid.test
Shoaib Meenai 3cee48a64d [llvm-lipo] Implement -info
Prints architecture type of all input files.

Patch by Anusha Basana <anusha.basana@gmail.com>

Differential Revision: https://reviews.llvm.org/D64668

llvm-svn: 366772
2019-07-23 00:42:03 +00:00

38 lines
951 B
Plaintext

# RUN: yaml2obj %s > %t
# RUN: not llvm-lipo %t -info 2>&1 | FileCheck %s
# CHECK: has unsupported binary format
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_DYN
Machine: EM_X86_64
Entry: 0x0000000000001000
Sections:
- Name: .gnu.version_d
Type: SHT_GNU_verdef
Flags: [ SHF_ALLOC ]
Address: 0x0000000000000230
Link: .dynstr
AddressAlign: 0x0000000000000004
Info: 0x0000000000000003
Entries:
- Version: 1
Flags: 1
VersionNdx: 1
Hash: 123456789
Names:
- foo
- Version: 1
Flags: 2
VersionNdx: 2
Hash: 987654321
Names:
- VERSION_1
- VERSION_2
DynamicSymbols:
- Name: bar
Binding: STB_GLOBAL
...