1 ## Show the behavior of llvm-readobj/llvm-readelf when no operations are requested.
3 ## Check the behavior on ET_EXEC input.
5 # RUN: yaml2obj -DTYPE=ET_EXEC %s -o %t.exe
6 # RUN: llvm-readobj %t.exe | FileCheck %s -DFILE=%t.exe --check-prefix LLVM
7 # RUN: llvm-readelf %t.exe | FileCheck %s -DFILE=%t.exe --check-prefix GNU --allow-empty
10 # LLVM: Format: elf64-x86-64
12 # LLVM: AddressSize: 64bit
13 # LLVM: LoadName: <Not found>{{$}}
26 ## Check the behavior on ET_REL input.
28 # RUN: yaml2obj -DTYPE=ET_REL %s -o %t.o
29 # RUN: llvm-readobj %t.o | FileCheck %s -DFILE=%t.o --check-prefix LLVM
30 # RUN: llvm-readelf %t.o | FileCheck %s -DFILE=%t.o --check-prefix GNU --allow-empty
32 ## Check the behavior on ET_DYN input.
34 # RUN: yaml2obj -DTYPE=ET_DYN %s -o %t.so
35 # RUN: llvm-readobj %t.so | FileCheck %s -DFILE=%t.so --check-prefix LLVM
36 # RUN: llvm-readelf %t.so | FileCheck %s -DFILE=%t.so --check-prefix GNU --allow-empty