[memprof] Remove an unused using directive (#117004)
[llvm-project.git] / lld / test / COFF / nodefaultlib.test
blobca8f09bdfc76c48faf900ac6b898193c71cbb8a8
1 # RUN: cp %p/Inputs/hello64.obj %T
2 # RUN: cp %p/Inputs/std64.lib %T
4 # RUN: not lld-link /out:%t.exe /entry:main /subsystem:console \
5 # RUN:   hello64.obj /defaultlib:std64.lib >& %t.log
6 # RUN: FileCheck -DMSG=%errc_ENOENT -check-prefix=CHECK1 %s < %t.log
8 # RUN: not lld-link /out:%t.exe /entry:main /subsystem:console \
9 # RUN:   hello64 /defaultlib:std64.lib >& %t.log
10 # RUN: FileCheck -DMSG=%errc_ENOENT -check-prefix=CHECK2 %s < %t.log
12 # RUN: lld-link /libpath:%T /out:%t.exe /entry:main \
13 # RUN:   /subsystem:console hello64.obj /defaultlib:std64.lib \
14 # RUN:   /nodefaultlib:std64.lib >& %t.log || true
15 # RUN: FileCheck -check-prefix=CHECK3 %s < %t.log
17 # RUN: lld-link /libpath:%T /out:%t.exe /entry:main \
18 # RUN:   /subsystem:console hello64.obj /defaultlib:std64 \
19 # RUN:   /nodefaultlib:std64.lib >& %t.log || true
20 # RUN: FileCheck -check-prefix=CHECK3 %s < %t.log
22 CHECK1: error: could not open 'hello64.obj': [[MSG]]
23 CHECK2: error: could not open 'hello64': [[MSG]]
24 CHECK3: error: undefined symbol: MessageBoxA
25 CHECK3-NEXT: >>> referenced by {{.*}}hello64.obj:(main)
27 # RUN: lld-link /libpath:%T /out:%t.exe /entry:main \
28 # RUN:   /subsystem:console hello64.obj /defaultlib:std64.lib
30 # RUN: env LIB=%T lld-link /out:%t.exe /entry:main \
31 # RUN:   /subsystem:console hello64.obj /defaultlib:std64.lib
33 MSVC stamps uppercase references in OBJ directives, thus ensure that passing lowercase 'libcmt' and 'oldnames' to /nodefaultlib works.
34 # RUN: lld-link %S/Inputs/precomp.obj %S/Inputs/precomp-a.obj %S/Inputs/precomp-b.obj /nodefaultlib:libcmt /nodefaultlib:oldnames /entry:main /debug /pdb:%t.pdb /out:%t.exe /opt:ref /opt:icf
35 # RUN: llvm-pdbutil dump -modules %t.pdb | FileCheck %s -check-prefix UPPERCASE
37 UPPERCASE-NOT: OLDNAMES
38 UPPERCASE-NOT: LIBCMT