Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / color-diagnostics.test
blobb079c82e1a43a6d1d268dec438634bf61cf804ee
1 # Windows command prompt doesn't support ANSI escape sequences.
2 # REQUIRES: shell
4 # RUN: not %lld --color-diagnostics /nosuchfile 2>&1 \
5 # RUN:   | FileCheck -check-prefix=COLOR %s
6 # RUN: not %lld --color-diagnostics=always /nosuchfile 2>&1 \
7 # RUN:   | FileCheck -check-prefix=COLOR %s
9 # COLOR: {{lld: .\[0;31merror: .\[0mcannot open /nosuchfile}}
11 # RUN: not %lld --color-diagnostics=foobar 2>&1 | FileCheck -check-prefix=ERR %s
12 # ERR: unknown option: --color-diagnostics=foobar
14 # RUN: not %lld /nosuchfile 2>&1 | FileCheck -check-prefix=NOCOLOR %s
15 # RUN: not %lld --color-diagnostics=never /nosuchfile 2>&1 \
16 # RUN:   | FileCheck -check-prefix=NOCOLOR %s
17 # RUN: not %lld --color-diagnostics=always --no-color-diagnostics \
18 # RUN:   /nosuchfile 2>&1 | FileCheck -check-prefix=NOCOLOR %s
20 # NOCOLOR: lld: error: cannot open /nosuchfile