12 lines · plain
1# RUN: yaml2obj %p/Inputs/pdb1.yaml -o %t1.obj2# RUN: yaml2obj %p/Inputs/pdb2.yaml -o %t2.obj3# RUN: lld-link /debug /debugtype:invalid /pdb:%t.pdb /dll /out:%t.dll \4# RUN: /entry:main /nodefaultlib %t1.obj %t2.obj 2>&1 | FileCheck %s5# CHECK: /debugtype: unknown option 'invalid'6 7# RUN: lld-link /debug /debugtype:invalid,foo /pdb:%t.pdb /dll /out:%t.dll \8# RUN: /entry:main /nodefaultlib %t1.obj %t2.obj 2>&1 | \9# RUN: FileCheck --check-prefix=TWO %s10# TWO: /debugtype: unknown option 'invalid'11# TWO: /debugtype: unknown option 'foo'12