summaryrefslogtreecommitdiff
path: root/lld/test/ELF/color-diagnostics.test
blob: ad201fada283d9ec1b09ea1593e67728e5384aa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Windows command prompt doesn't support ANSI escape sequences.
# UNSUPPORTED: system-windows

# RUN: not ld.lld -xyz --color-diagnostics /nosuchfile 2>&1 \
# RUN:   | FileCheck -check-prefix=COLOR %s
# RUN: not ld.lld -xyz --color-diagnostics=always /nosuchfile 2>&1 \
# RUN:   | FileCheck -check-prefix=COLOR %s

# COLOR: {{ld.lld: .\[0;31merror: .\[0munknown argument '-xyz'}}
# COLOR: {{ld.lld: .\[0;31merror: .\[0mcannot open /nosuchfile}}

# RUN: not ld.lld --color-diagnostics=foobar 2>&1 | FileCheck -check-prefix=ERR %s
# ERR: unknown option: --color-diagnostics=foobar

# RUN: not ld.lld /nosuchfile 2>&1 | FileCheck -check-prefix=NOCOLOR %s
# RUN: not ld.lld --color-diagnostics=never /nosuchfile 2>&1 \
# RUN:   | FileCheck -check-prefix=NOCOLOR %s
# RUN: not ld.lld --color-diagnostics=always --no-color-diagnostics \
# RUN:   /nosuchfile 2>&1 | FileCheck -check-prefix=NOCOLOR %s

# NOCOLOR: ld.lld: error: cannot open /nosuchfile