Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MinGW / error-limit.test
blob68e9ea9b31ce6f88aa3f85d55dcf38da97a1d543
1 RUN: ld.lld -### foo.o -m i386pep 2>&1 | FileCheck -check-prefix=DEFAULT %s
2 DEFAULT-NOT: -errorlimit:
3 DEFAULT-NOT: /errorlimit:
5 RUN: ld.lld -### foo.o -m i386pep --error-limit=5 2>&1 | FileCheck -check-prefix=NUMERIC %s
6 NUMERIC: -errorlimit:5
8 RUN: ld.lld -### foo.o -m i386pep --error-limit=0 2>&1 | FileCheck -check-prefix=UNLIMITED %s
9 UNLIMITED: -errorlimit:0
11 RUN: not ld.lld -### foo.o -m i386pep --error-limit=XYZ 2>&1 | FileCheck -check-prefix=WRONG %s
12 WRONG:      --error-limit: number expected, but got XYZ