diff --git a/colout/colout_cmake.py b/colout/colout_cmake.py index ae9027d..a9588ca 100644 --- a/colout/colout_cmake.py +++ b/colout/colout_cmake.py @@ -26,7 +26,8 @@ def theme(context): [ "^--.*", performing ], # Errors [ "CMake Error", "red" ], - [ "CMake Warning", "yellow" ], + [ "CMake Warning", "magenta" ], + [ "CMake Deprecation Warning", "magenta" ], # Scan [ "^(Scanning dependencies of target)(.*)$", performing, "normal,bold" ], diff --git a/colout/colout_ctest.py b/colout/colout_ctest.py index ba7e56e..ee6e36d 100644 --- a/colout/colout_ctest.py +++ b/colout/colout_ctest.py @@ -2,6 +2,7 @@ def theme(context): # CTest theme: passed="green" + notrun="yellow" notpassed="red" # If the user do not ask for his own colormap @@ -13,5 +14,6 @@ def theme(context): return context,[ # Passed [ "^\s*[0-9]+/[0-9]+ Test\s+#[0-9]+: (.*)\s+\.+\s+(Passed)", "blue,"+passed], - [ "^\s*[0-9]+/[0-9]+ Test\s+#[0-9]+: (.*)\s+\.+(\*{3}.*)\s+.*", "blue,"+notpassed] + [ "^\s*[0-9]+/[0-9]+ Test\s+#[0-9]+: (.*)\s+\.+(\*{3}Not Run.*)\s+.*", "blue,"+notrun], + [ "^\s*[0-9]+/[0-9]+ Test\s+#[0-9]+: (.*)\s+\.+(.*\*{3}.*)\s+.*", "blue,"+notpassed], ]