Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / ELF / error-limit.test
blobdc197c2f8b063a644918e05ecfd0bc6e5b655fbe
1 RUN: not ld.lld 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:      cannot open 01
5 DEFAULT:      cannot open 20
6 DEFAULT-NEXT: too many errors emitted, stopping now (use --error-limit=0 to see all errors)
7 DEFAULT-NOT:  cannot open 21
9 RUN: not ld.lld --error-limit=5 01 02 03 04 05 06 07 08 09 10 2>&1 \
10 RUN:   | FileCheck -check-prefix=LIMIT5 %s
11 RUN: not ld.lld --error-limit 5 01 02 03 04 05 06 07 08 09 10 2>&1 \
12 RUN:   | FileCheck -check-prefix=LIMIT5 %s
14 LIMIT5:      cannot open 01
15 LIMIT5:      cannot open 05
16 LIMIT5-NEXT: too many errors emitted, stopping now (use --error-limit=0 to see all errors)
17 LIMIT5-NOT:  cannot open 06
19 RUN: not ld.lld --error-limit=0 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 \
20 RUN:   16 17 18 19 20 21 22 2>&1 | FileCheck -check-prefix=UNLIMITED %s
22 UNLIMITED:     cannot open 01
23 UNLIMITED:     cannot open 20
24 UNLIMITED:     cannot open 21
25 UNLIMITED:     cannot open 22
26 UNLIMITED-NOT: too many errors emitted, stopping now (use --error-limit=0 to see all errors)