1Tests /ignore with more than one argument.
2
3RUN: yaml2obj %S/ignore4217.yaml > %t1.obj
4RUN: yaml2obj %S/Inputs/pdb-type-server-missing-2.yaml > %t2.obj
5RUN: echo foo > %t3.order
6
7RUN: lld-link /entry:main /out:%t.exe %t1.obj %t2.obj /order:@%t3.order /debug 2>&1 | FileCheck -check-prefix=WARNINGS %s
8RUN: lld-link /entry:main /out:%t.exe %t1.obj %t2.obj /order:@%t3.order /debug /ignore:4217,4099,4037 2>&1 | FileCheck -allow-empty -check-prefix=SUPPRESSED %s
9
10WARNINGS: locally defined symbol imported
11WARNINGS: missing symbol: foo
12WARNINGS: warning: Cannot use debug info for
13
14SUPPRESSED-NOT: locally defined symbol imported
15SUPPRESSED-NOT: missing symbol: foo
16SUPPRESSED-NOT: warning: Cannot use debug info for
17