Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / tools / llvm-readobj / ELF / no-shdrs.test
blob27fcd06c0fce7e3afc1b27c52c032710924e3652
1 # Show that llvm-readobj can handle ELF files where the section header table has
2 # been stripped, both for GNU and LLVM style output.
4 # RUN: yaml2obj %s -o %t.raw
5 # RUN: llvm-objcopy --strip-sections %t.raw %t.o
6 # RUN: llvm-readobj --file-headers --section-headers --symbols %t.o | FileCheck %s --check-prefix=LLVM
7 # RUN: llvm-readelf --file-headers --section-headers --symbols %t.o | FileCheck %s --check-prefix=GNU --allow-empty
8 # RUN: llvm-readelf --file-headers --section-details --symbols %t.o | FileCheck %s --check-prefix=GNU --allow-empty
10 # LLVM:      SectionHeaderCount:      0
11 # LLVM:      StringTableSectionIndex: 0
12 # LLVM:      Sections [
13 # LLVM-NEXT: ]
14 # LLVM-NEXT: Symbols [
15 # LLVM-NEXT: ]
17 # GNU:     Number of section headers:         0
18 # GNU:     Section header string table index: 0
19 # GNU-EMPTY:
20 # GNU:     There are no sections in this file.
21 # GNU-NOT: Symbol table '{{.*}}' contains {{.*}} entries
23 --- !ELF
24 FileHeader:
25   Class: ELFCLASS64
26   Data:  ELFDATA2LSB
27   Type:  ET_REL
28 Sections:
29   - Name: .text
30     Type: SHT_PROGBITS
31 Symbols:
32   - Name:    foobar
33     Section: .text
34     Binding: STB_GLOBAL