summaryrefslogtreecommitdiffstats
path: root/llvm/test/Object/nm-shared-object.test
blob: 9865383be5038cb3a5cd6f1e35aab11111150655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
RUN: llvm-nm -D %p/Inputs/shared-object-test.elf-i386 \
RUN:         | FileCheck %s -check-prefix ELF-32

ELF-32-NOT: U
ELF-32: 000012c8 A __bss_start
ELF-32: 000012c8 A _edata
ELF-32: 000012cc A _end
ELF-32: 000012c8 B common_sym
ELF-32: 000012c4 D defined_sym
ELF-32: 000001f0 T global_func
ELF-32: 00000000 D tls_sym

RUN: llvm-nm -D %p/Inputs/shared-object-test.elf-x86-64 \
RUN:         | FileCheck %s -check-prefix ELF-64

ELF-64-NOT: U
ELF-64: 0000000000200454 A __bss_start
ELF-64: 0000000000200454 A _edata
ELF-64: 0000000000200458 A _end
ELF-64: 0000000000200454 B common_sym
ELF-64: 0000000000200450 D defined_sym
ELF-64: 00000000000002f0 T global_func
ELF-64: 0000000000000000 D tls_sym

RUN: not llvm-nm -D %p/Inputs/weak-global-symbol.macho-i386 2>&1 \
RUN:         | FileCheck %s -check-prefix ERROR

RUN: not llvm-nm -D %p/Inputs/trivial-object-test.coff-i386 2>&1 \
RUN:         | FileCheck %s -check-prefix ERROR

ERROR: File format has no dynamic symbol table.

RUN: llvm-nm -D %p/Inputs/trivial-object-test.elf-i386 2>&1 \
RUN:         | FileCheck %s -check-prefix=NO-SYMBOLS
NO-SYMBOLS: no symbols
OpenPOWER on IntegriCloud