xref: /llvm-project/lld/test/COFF/linkrepro-manifest.test (revision 400a1de3ac4583794797852aab49aaa821c95b7d)
1REQUIRES: x86, gnutar, manifest_tool
2
3RUN: rm -rf %t && mkdir %t && cd %t
4RUN: lld-link -entry:__ImageBase -nodefaultlib -linkrepro:%t \
5RUN:     -manifest:embed %p/Inputs/std32.lib -subsystem:console \
6RUN:     -manifestinput:%p/Inputs/manifestinput.test
7
8RUN: tar tf repro.tar | FileCheck --check-prefix=LIST %s
9RUN: tar xOf repro.tar repro/response.txt \
10RUN:     | FileCheck --implicit-check-not=.manifest.res %s
11
12LIST: {{.*}}manifestinput.test
13
14CHECK-DAG: -manifest:embed
15CHECK-DAG: -manifestinput:{{.*}}manifestinput.test
16