You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
891 B
23 lines
891 B
REQUIRES: x86, gnutar
|
|
|
|
RUN: rm -rf %t && mkdir -p %t && cd %t
|
|
RUN: yaml2obj %S/Inputs/pdb-type-server-simple-a.yaml -o a.obj
|
|
RUN: yaml2obj %S/Inputs/pdb-type-server-simple-b.yaml -o b.obj
|
|
RUN: llvm-pdbutil yaml2pdb %S/Inputs/pdb-type-server-simple-ts.yaml -pdb ts.pdb
|
|
RUN: lld-link a.obj b.obj -entry:main -debug -out:%t.exe -pdb:%t.pdb -nodefaultlib -linkrepro:.
|
|
RUN: tar xOf repro.tar repro/%:t/ts.pdb > repro-ts.pdb
|
|
RUN: diff ts.pdb repro-ts.pdb
|
|
|
|
RUN: tar xf repro.tar
|
|
RUN: cat repro/response.txt | FileCheck -check-prefix=PDB %s
|
|
|
|
PDB: -out:linkrepro-pdb.test.tmp.exe
|
|
PDB-NEXT: -pdb:linkrepro-pdb.test.tmp.pdb
|
|
|
|
RUN: yaml2obj %p/Inputs/export.yaml -o %t1.obj
|
|
RUN: lld-link /out:%t1.dll /dll %t1.obj /implib:%t1.lib /export:exportfn1 /export:exportfn2 /linkrepro:.
|
|
RUN: tar xf repro.tar
|
|
RUN: cat repro/response.txt | FileCheck -check-prefix=IMP %s
|
|
|
|
IMP: /implib:linkrepro-pdb.test.tmp1.lib
|