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 --docnum=1 %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 --docnum=2 %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
39 ## Check the behavior on ET_DYN input.
41 # RUN: yaml2obj --docnum=3 %s -o %t.so
42 # RUN: llvm-readobj %t.so | FileCheck %s -DFILE=%t.so --check-prefix LLVM
43 # RUN: llvm-readelf %t.so | FileCheck %s -DFILE=%t.so --check-prefix GNU --allow-empty