re PR testsuite/57605 (colors break note pruning in the testsuite)
PR testsuite/57605 libstdc++-v3/ * testsuite/lib/libstdc++.exp (libstdc++_init): Prepend -fdiagnostics-color=never to cxxflags. libmudflap/ * testsuite/lib/libmudflap.exp (libmudflap-init): Append -fdiagnostics-color=never to cxxflags. libgomp/ * testsuite/lib/libgomp.exp: Add -fdiagnostics-color=never to ALWAYS_CFLAGS. From-SVN: r202791
This commit is contained in:
parent
a3cc13ccc8
commit
bd599dea43
6 changed files with 23 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2013-09-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR testsuite/57605
|
||||
* testsuite/lib/libgomp.exp: Add -fdiagnostics-color=never to
|
||||
ALWAYS_CFLAGS.
|
||||
|
||||
2013-09-20 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
|
|
@ -167,6 +167,9 @@ proc libgomp_init { args } {
|
|||
# Disable caret
|
||||
lappend ALWAYS_CFLAGS "additional_flags=-fno-diagnostics-show-caret"
|
||||
|
||||
# Disable color diagnostics
|
||||
lappend ALWAYS_CFLAGS "additional_flags=-fdiagnostics-color=never"
|
||||
|
||||
# And, gee, turn on OpenMP.
|
||||
lappend ALWAYS_CFLAGS "additional_flags=-fopenmp"
|
||||
}
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2013-09-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR testsuite/57605
|
||||
* testsuite/lib/libmudflap.exp (libmudflap-init): Append
|
||||
-fdiagnostics-color=never to cxxflags.
|
||||
|
||||
2013-09-20 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
|
|
@ -85,7 +85,7 @@ proc libmudflap-init { language } {
|
|||
append ld_library_path ":${blddir}/.libs"
|
||||
|
||||
set libs "-L${blddir}/.libs"
|
||||
set cxxflags "-ggdb3 -DDEBUG_ASSERT"
|
||||
set cxxflags "-ggdb3 -DDEBUG_ASSERT -fdiagnostics-color=never"
|
||||
set includes "-I${srcdir} -I${srcdir}/.. -I.."
|
||||
|
||||
if {$language == "c++"} {
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2013-09-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR testsuite/57605
|
||||
* testsuite/lib/libstdc++.exp (libstdc++_init): Prepend
|
||||
-fdiagnostics-color=never to cxxflags.
|
||||
|
||||
2013-09-20 Marc Glisse <marc.glisse@inria.fr>
|
||||
|
||||
PR libstdc++/58338
|
||||
|
|
|
@ -283,7 +283,7 @@ proc libstdc++_init { testfile } {
|
|||
v3track cxxflags 2
|
||||
|
||||
# Always use MO files built by this test harness.
|
||||
set cxxflags "$cxxflags -DLOCALEDIR=\".\""
|
||||
set cxxflags "-fdiagnostics-color=never $cxxflags -DLOCALEDIR=\".\""
|
||||
set ccflags "$cxxflags -DLOCALEDIR=\".\""
|
||||
|
||||
# If a PCH file is available, use it. We must delay performing
|
||||
|
|
Loading…
Add table
Reference in a new issue