Matt Beaumont-Gay | 1c1a2b8 | 2011-10-31 23:56:52 +0000 | [diff] [blame] | 1 | RUN: llvm-nm %p/Inputs/archive-test.a-coff-i386 \ |
Michael J. Spencer | 2bc774a | 2011-09-27 19:37:18 +0000 | [diff] [blame] | 2 | RUN: | FileCheck %s -check-prefix COFF |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 3 | |
Michael J. Spencer | 2bc774a | 2011-09-27 19:37:18 +0000 | [diff] [blame] | 4 | COFF: trivial-object-test.coff-i386: |
| 5 | COFF-NEXT: 00000000 d .data |
| 6 | COFF-NEXT: 00000000 t .text |
| 7 | COFF-NEXT: 00000000 d L_.str |
| 8 | COFF-NEXT: U _SomeOtherFunction |
| 9 | COFF-NEXT: 00000000 T _main |
| 10 | COFF-NEXT: U _puts |
| 11 | |
Rafael Espindola | fbcafc0 | 2013-07-10 20:14:22 +0000 | [diff] [blame] | 12 | |
| 13 | RUN: llvm-as %p/Inputs/trivial.ll -o=%t1 |
| 14 | RUN: rm -f %t2 |
| 15 | RUN: llvm-ar rcs %t2 %t1 |
| 16 | RUN: llvm-nm %t2 | FileCheck %s -check-prefix BITCODE |
| 17 | |
Michael J. Spencer | 2bc774a | 2011-09-27 19:37:18 +0000 | [diff] [blame] | 18 | BITCODE: U SomeOtherFunction |
| 19 | BITCODE-NEXT: T main |
| 20 | BITCODE-NEXT: U puts |
Rafael Espindola | fbcafc0 | 2013-07-10 20:14:22 +0000 | [diff] [blame] | 21 | |
| 22 | |
| 23 | Test we don't error with an archive with no symtab. |
| 24 | RUN: llvm-nm %p/Inputs/archive-test.a-gnu-no-symtab |
| 25 | |
| 26 | |
| 27 | Or in an archive with no symtab or string table. |
| 28 | RUN: llvm-nm %p/Inputs/archive-test.a-gnu-minimal |
| 29 | |
| 30 | |
| 31 | And don't crash when asked to print a non existing symtab. |
| 32 | RUN: llvm-nm -s %p/Inputs/archive-test.a-gnu-minimal |
Rafael Espindola | f0c6172 | 2013-07-12 13:32:28 +0000 | [diff] [blame^] | 33 | |
| 34 | Don't reject an empty archive. |
| 35 | RUN: llvm-nm %p/Inputs/archive-test.a-empty |