From: Nathan Sidwell Date: Tue, 5 May 2020 19:50:54 +0000 (-0700) Subject: libitm: Disable diagnostic coloring in tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1136ba01e1a1d9dda49c19432843748258bef06f;p=gcc.git libitm: Disable diagnostic coloring in tests Diagnostic coloring makes the log file hard to read when there's a problem. Let's do without it. * Testsuite/lib/libitm.exp (libitm_init): Add -fdiagnostics-color=never to options. --- diff --git a/libitm/ChangeLog b/libitm/ChangeLog index 9c70974776c..37a1b443e11 100644 --- a/libitm/ChangeLog +++ b/libitm/ChangeLog @@ -1,3 +1,8 @@ +2020-05-05 Nathan Sidwell + + * testsuite/lib/libitm.exp (libitm_init): Add + -fdiagnostics-color=never to options. + 2020-02-12 Sandra Loosemore PR libstdc++/79193 diff --git a/libitm/testsuite/lib/libitm.exp b/libitm/testsuite/lib/libitm.exp index b3d247b9f98..6d8e3e71310 100644 --- a/libitm/testsuite/lib/libitm.exp +++ b/libitm/testsuite/lib/libitm.exp @@ -175,6 +175,8 @@ proc libitm_init { args } { # Turn on transactional memory support. lappend ALWAYS_CFLAGS "additional_flags=-fgnu-tm" + + lappend ALWAYS_CFLAGS "additional_flags=-fdiagnostics-color=never" } #