aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ctest-driver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ctest-driver.py b/tools/ctest-driver.py
index eaab3b8..a3fa3e3 100755
--- a/tools/ctest-driver.py
+++ b/tools/ctest-driver.py
@@ -50,7 +50,7 @@ def match_any(s, regexes):
if not regexes:
return True
for regex in regexes:
- if re.search(regex, s):
+ if re.search(regex, s, flags=re.MULTILINE):
return True
return False