[LLD][COFF] Fix TypeServerSource matcher with more than one collision
[llvm-project.git] / lld / test / COFF / error-limit.test
blobeddd2ab9a64dc0142116e1df8129374ee2d92a3a
1 RUN: not lld-link 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 \
2 RUN:   21 22 2>&1 | FileCheck -check-prefix=DEFAULT %s
4 DEFAULT:      could not open '01'
5 DEFAULT:      could not open '20'
6 DEFAULT-NEXT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
7 DEFAULT-NOT:  could not open '21'
9 RUN: not lld-link /errorlimit:5 01 02 03 04 05 06 07 08 09 10 2>&1 \
10 RUN:   | FileCheck -check-prefix=LIMIT5 %s
12 LIMIT5:      could not open '01'
13 LIMIT5:      could not open '05'
14 LIMIT5-NEXT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
15 LIMIT5-NOT:  could not open '06'
17 RUN: not lld-link /errorlimit:0 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 \
18 RUN:   16 17 18 19 20 21 22 2>&1 | FileCheck -check-prefix=UNLIMITED %s
20 UNLIMITED:     could not open '01'
21 UNLIMITED:     could not open '20'
22 UNLIMITED:     could not open '21'
23 UNLIMITED:     could not open '22'
24 UNLIMITED-NOT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
26 RUN: not lld-link /errorlimit:XYZ 01 02 03 04 05 06 07 08 09 10 11 12 13 14 \
27 RUN:   15 16 17 18 19 20 21 22 2>&1 | FileCheck -check-prefix=WRONG %s
29 WRONG:      /errorlimit: number expected, but got XYZ