1RUN: not lld-link 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 \
2RUN:   21 22 2>&1 | FileCheck -check-prefix=DEFAULT %s
3
4DEFAULT:      could not open '01'
5DEFAULT:      could not open '20'
6DEFAULT-NEXT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
7DEFAULT-NOT:  could not open '21'
8
9RUN: not lld-link /errorlimit:5 01 02 03 04 05 06 07 08 09 10 2>&1 \
10RUN:   | FileCheck -check-prefix=LIMIT5 %s
11
12LIMIT5:      could not open '01'
13LIMIT5:      could not open '05'
14LIMIT5-NEXT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
15LIMIT5-NOT:  could not open '06'
16
17RUN: not lld-link /errorlimit:0 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 \
18RUN:   16 17 18 19 20 21 22 2>&1 | FileCheck -check-prefix=UNLIMITED %s
19
20UNLIMITED:     could not open '01'
21UNLIMITED:     could not open '20'
22UNLIMITED:     could not open '21'
23UNLIMITED:     could not open '22'
24UNLIMITED-NOT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
25
26RUN: not lld-link /errorlimit:XYZ 01 02 03 04 05 06 07 08 09 10 11 12 13 14 \
27RUN:   15 16 17 18 19 20 21 22 2>&1 | FileCheck -check-prefix=WRONG %s
28
29WRONG:      /errorlimit: number expected, but got XYZ
30