CTest: Add error exception for sphinx-build WARNING messages

Sphinx-build warnings look like this:

    ../path/to/file.rst:105: WARNING: This is not an error.

CTest detects these as errors by this regex:

    ([^ :]+):([0-9]+): ([^ \\t])

Add an exception as we already have for lower-case `: warning`.
This commit is contained in:
Tim
2018-08-29 04:57:00 -04:00
committed by Brad King
parent 6783fac20a
commit fde61d3ad3

View File

@@ -83,6 +83,7 @@ static const char* cmCTestErrorExceptions[] = {
"instantiated from ",
"candidates are:",
": warning",
": WARNING",
": \\(Warning\\)",
": note",
"Note:",