diff options
author | Nick Clifton <nickc@redhat.com> | 2022-08-09 14:57:48 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2022-08-09 14:57:48 +0100 |
commit | a88c79b77036e4778e70d62081c3cfd1044bb8e3 (patch) | |
tree | 3897a05c5d447fd3d44babc8312e0c8ad7dac417 /binutils/testsuite/binutils-all/arc | |
parent | 80d362484999634e11d2b9f9e6d69e2cd4fdba12 (diff) | |
download | binutils-a88c79b77036e4778e70d62081c3cfd1044bb8e3.zip binutils-a88c79b77036e4778e70d62081c3cfd1044bb8e3.tar.gz binutils-a88c79b77036e4778e70d62081c3cfd1044bb8e3.tar.bz2 |
Default to enabling colored disassembly if output is to a terminal.
PR 29457
* objdump.c (disassembler_color): Change type to an enum.
(disassembler_extended_color): Remove.
(usage): Update.
(objdump_color_for_assembler_style): Update.
(main): Update initialisation of disassembler_color. If not
initialised via a command line option, set based upon terminal
output.
* doc/binutils.texi: Update description of disassmbler-color
option.
* testsuite/binutils-all/arc/objdump.exp: Add
--disassembler-color=off option when disassembling.
* testsuite/binutils-all/arm/objdump.exp: Likewise.
Diffstat (limited to 'binutils/testsuite/binutils-all/arc')
-rw-r--r-- | binutils/testsuite/binutils-all/arc/objdump.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/testsuite/binutils-all/arc/objdump.exp b/binutils/testsuite/binutils-all/arc/objdump.exp index fe69855..6ade013 100644 --- a/binutils/testsuite/binutils-all/arc/objdump.exp +++ b/binutils/testsuite/binutils-all/arc/objdump.exp @@ -56,7 +56,7 @@ proc check_assembly { testname objfile expected { disas_flags "" } } { fail $testname return } - set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble $disas_flags \ + set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble --disassembler-color=off $disas_flags \ $objfile"] if [regexp $expected $got] then { |