2017-04-05 08:43:54 +08:00
|
|
|
RUN: not lld-link 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 \
|
|
|
|
RUN: 21 22 2>&1 | FileCheck -check-prefix=DEFAULT %s
|
|
|
|
|
2019-05-24 01:58:33 +08:00
|
|
|
DEFAULT: could not open '01'
|
|
|
|
DEFAULT: could not open '20'
|
2018-03-12 20:45:40 +08:00
|
|
|
DEFAULT-NEXT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
|
2019-05-24 01:58:33 +08:00
|
|
|
DEFAULT-NOT: could not open '21'
|
2017-04-05 08:43:54 +08:00
|
|
|
|
2018-03-12 20:45:40 +08:00
|
|
|
RUN: not lld-link /errorlimit:5 01 02 03 04 05 06 07 08 09 10 2>&1 \
|
2017-04-05 08:43:54 +08:00
|
|
|
RUN: | FileCheck -check-prefix=LIMIT5 %s
|
|
|
|
|
2019-05-24 01:58:33 +08:00
|
|
|
LIMIT5: could not open '01'
|
|
|
|
LIMIT5: could not open '05'
|
2018-03-12 20:45:40 +08:00
|
|
|
LIMIT5-NEXT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
|
2019-05-24 01:58:33 +08:00
|
|
|
LIMIT5-NOT: could not open '06'
|
2017-04-05 08:43:54 +08:00
|
|
|
|
2018-03-12 20:45:40 +08:00
|
|
|
RUN: not lld-link /errorlimit:0 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 \
|
2017-04-05 08:43:54 +08:00
|
|
|
RUN: 16 17 18 19 20 21 22 2>&1 | FileCheck -check-prefix=UNLIMITED %s
|
|
|
|
|
2019-05-24 01:58:33 +08:00
|
|
|
UNLIMITED: could not open '01'
|
|
|
|
UNLIMITED: could not open '20'
|
|
|
|
UNLIMITED: could not open '21'
|
|
|
|
UNLIMITED: could not open '22'
|
2018-03-12 20:45:40 +08:00
|
|
|
UNLIMITED-NOT: too many errors emitted, stopping now (use /errorlimit:0 to see all errors)
|
2017-04-05 08:43:54 +08:00
|
|
|
|
2018-03-12 20:45:40 +08:00
|
|
|
RUN: not lld-link /errorlimit:XYZ 01 02 03 04 05 06 07 08 09 10 11 12 13 14 \
|
2017-04-05 08:43:54 +08:00
|
|
|
RUN: 15 16 17 18 19 20 21 22 2>&1 | FileCheck -check-prefix=WRONG %s
|
|
|
|
|
2018-03-12 20:45:40 +08:00
|
|
|
WRONG: /errorlimit: number expected, but got XYZ
|