From f5270649d66ac1db4661dd63e2ca70b7f31ed6c2 Mon Sep 17 00:00:00 2001
From: Florian Uhlig <f.uhlig@gsi.de>
Date: Wed, 30 Mar 2022 14:53:52 +0200
Subject: [PATCH] Remove filtering all warnings

Some time ago a verry effective filter to remove all warnings was introduced
by accident. The problem was a not properly escaped special character in a
regular expression. The commit now fixes the erroneous regex.
---
 CTestCustom.cmake | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/CTestCustom.cmake b/CTestCustom.cmake
index 1044ebd897..6bf6109bc7 100644
--- a/CTestCustom.cmake
+++ b/CTestCustom.cmake
@@ -75,7 +75,8 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION
 
         # -- warnings from macosx test machines
         "ld: warning: dylib.*was built for newer macOS version.*than being linked"
-        ".*^.*"
+        ".*\\^.*"
+        "warning.*generated."
 
         # -- don't show pragma message warnings
         "Compiling CBM Configuration"
-- 
GitLab