[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-ar / no-symtab.yaml
blob7370c9b323552210f53876d7d1fca855eb2093c6
1 ## Create archives with no symtab in various formats and check that we can read them.
3 # RUN: yaml2obj %s -o %t.o
4 # RUN: rm -f %t.*.a
6 # RUN: llvm-ar --format=gnu rcS %t.gnu.a %t.o
7 # RUN: llvm-ar --format=coff rcS %t.coff.a %t.o
8 # RUN: llvm-ar --format=darwin rcS %t.darwin.a %t.o
9 # RUN: llvm-ar --format=bsd rcS %t.bsd.a %t.o
10 # RUN: llvm-ar --format=bigarchive rcS %t.bigarchive.a %t.o
12 # RUN: llvm-nm --print-armap %t.gnu.a | FileCheck %s
13 # RUN: llvm-nm --print-armap %t.coff.a | FileCheck %s
14 # RUN: llvm-nm --print-armap %t.darwin.a | FileCheck %s
15 # RUN: llvm-nm --print-armap %t.bsd.a | FileCheck %s
16 # RUN: llvm-nm --print-armap %t.bigarchive.a | FileCheck %s
18 # CHECK-NOT: Archive map
20 --- !ELF
21 FileHeader:
22   Class:   ELFCLASS64
23   Data:    ELFDATA2LSB
24   Type:    ET_REL
25   Machine: EM_X86_64
26 Sections:
27   - Name: .text
28     Type: SHT_PROGBITS
29 Symbols:
30   - Name:    symbol
31     Binding: STB_GLOBAL
32     Section: .text