diff options
Diffstat (limited to 'lld/test/wasm/archive.ll')
-rw-r--r-- | lld/test/wasm/archive.ll | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lld/test/wasm/archive.ll b/lld/test/wasm/archive.ll index b2499ea438c..50f72d62738 100644 --- a/lld/test/wasm/archive.ll +++ b/lld/test/wasm/archive.ll @@ -1,8 +1,9 @@ ; RUN: llc -filetype=obj %s -o %t.o ; RUN: llc -filetype=obj %S/Inputs/archive1.ll -o %t.a1.o ; RUN: llc -filetype=obj %S/Inputs/archive2.ll -o %t.a2.o -; RUN: llc -filetype=obj %S/Inputs/hello.ll -o %t.a3.o -; RUN: llvm-ar rcs %t.a %t.a1.o %t.a2.o %t.a3.o +; RUN: llc -filetype=obj %S/Inputs/archive3.ll -o %t.a3.o +; RUN: llc -filetype=obj %S/Inputs/hello.ll -o %t.hello.o +; RUN: llvm-ar rcs %t.a %t.a1.o %t.a2.o %t.a3.o %t.hello.o ; RUN: rm -f %t.imports ; RUN: not wasm-ld %t.a %t.o -o %t.wasm 2>&1 | FileCheck -check-prefix=CHECK-UNDEFINED %s @@ -31,9 +32,10 @@ entry: ; TODO(ncw): Update LLD so that the symbol table is written out for ; non-relocatable output (with an option to strip it) -; CHECK: 00000003 T _start +; CHECK: 00000004 T _start +; CHECK-NEXT: 00000002 T archive2_symbol ; CHECK-NEXT: 00000001 T bar -; CHECK-NEXT: 00000002 T foo +; CHECK-NEXT: 00000003 T foo ; CHECK-NEXT: U missing_func ; Verify that symbols from unused objects don't appear in the symbol table @@ -41,3 +43,9 @@ entry: ; Specifying the same archive twice is allowed. ; RUN: wasm-ld %t.a %t.a %t.o -o %t.wasm + +; Verfiy errors include library name +; RUN: not wasm-ld -u archive2_symbol -u archive3_symbol %t.a %t.o -o %t.wasm 2>&1 | FileCheck -check-prefix=CHECK-DUP %s +; CHECK-DUP: error: duplicate symbol: bar +; CHECK-DUP: >>> defined in {{.*}}.a({{.*}}.a2.o) +; CHECK-DUP: >>> defined in {{.*}}.a({{.*}}.a3.o) |