https://github.com/Kitware/CMake
Revision 1c61d240ddd5fe493427a10ad571b662ded97eb8 authored by Bill Hoffman on 27 July 2017, 16:30:34 UTC, committed by Brad King on 07 August 2017, 15:01:49 UTC
Since launchers show the entire stderr/stdout for a command and only
skip it if all of the lines are suppressed, it can be hard to tell if
individual suppressions are working.  Mark up the output reported to
CDash with a prefix for each line indicating whether it was a matched or
suppressed warning.  Lines that are suppressed are prefixed with
`[CTest: warning suppressed]` and lines that match the warning
expression are prefixed with `[CTest: warning matched]`. This should
make it easier for people to add suppressions as they will know what
they need to match and what they have already suppressed. This is an
issue because if there is more than one warning in a single compiler
output you have to suppress all of them before it will go away.
1 parent af97088
Raw File
Tip revision: 1c61d240ddd5fe493427a10ad571b662ded97eb8 authored by Bill Hoffman on 27 July 2017, 16:30:34 UTC
CTest: Report lines matched by launchers
Tip revision: 1c61d24
.clang-format
---
# This configuration requires clang-format 3.8 or higher.
BasedOnStyle: Mozilla
AlignOperands: false
AlwaysBreakAfterReturnType: None
AlwaysBreakAfterDefinitionReturnType: None
ColumnLimit: 79
Standard: Cpp03
...
back to top