Add support for gnu archives with a string table and no symtab.
[oota-llvm.git] / test / Object / nm-archive.test
1 RUN: llvm-nm %p/Inputs/archive-test.a-coff-i386 \
2 RUN:         | FileCheck %s -check-prefix COFF
3
4 RUN: llvm-as %p/Inputs/trivial.ll -o=%t1
5 RUN: rm -f %t2
6 RUN: llvm-ar rcs %t2 %t1
7 RUN: llvm-nm %t2 | FileCheck %s -check-prefix BITCODE
8
9 Test we don't error with an archive with no symtab.
10 RUN: llvm-nm %p/Inputs/archive-test.a-gnu-no-symtab
11
12 COFF: trivial-object-test.coff-i386:
13 COFF-NEXT: 00000000 d .data
14 COFF-NEXT: 00000000 t .text
15 COFF-NEXT: 00000000 d L_.str
16 COFF-NEXT:          U _SomeOtherFunction
17 COFF-NEXT: 00000000 T _main
18 COFF-NEXT:          U _puts
19
20 BITCODE:          U SomeOtherFunction
21 BITCODE-NEXT:          T main
22 BITCODE-NEXT:          U puts