[Scummvm-git-logs] scummvm master -> bbfbf36a61bc0621955db4d87b5a122eec07aa27
OMGPizzaGuy
noreply at scummvm.org
Fri May 15 00:16:42 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
bbfbf36a61 TEST: Fix regex in cxxtest
Commit: bbfbf36a61bc0621955db4d87b5a122eec07aa27
https://github.com/scummvm/scummvm/commit/bbfbf36a61bc0621955db4d87b5a122eec07aa27
Author: Matthew Jimenez (matthew.jimenez at outlook.com)
Date: 2026-05-14T19:11:58-05:00
Commit Message:
TEST: Fix regex in cxxtest
Changed paths:
test/cxxtest/python/cxxtest/cxxtest_parser.py
test/cxxtest/python/python3/cxxtest/cxxtest_parser.py
diff --git a/test/cxxtest/python/cxxtest/cxxtest_parser.py b/test/cxxtest/python/cxxtest/cxxtest_parser.py
index 122cdd8f13e..3578806f445 100644
--- a/test/cxxtest/python/cxxtest/cxxtest_parser.py
+++ b/test/cxxtest/python/cxxtest/cxxtest_parser.py
@@ -40,7 +40,7 @@ def scanInputFiles(files, _options):
abort( 'No tests defined' )
return [options,suites]
-lineCont_re = re.compile(r'(.*)\\s*$')
+lineCont_re = re.compile(r'(.*)\\\s*$')
def scanInputFile(fileName):
'''Scan single input file for test suites'''
# mode 'rb' is problematic in python3 - byte arrays don't behave the same as
diff --git a/test/cxxtest/python/python3/cxxtest/cxxtest_parser.py b/test/cxxtest/python/python3/cxxtest/cxxtest_parser.py
index f3f9a701ce7..b6447442781 100644
--- a/test/cxxtest/python/python3/cxxtest/cxxtest_parser.py
+++ b/test/cxxtest/python/python3/cxxtest/cxxtest_parser.py
@@ -40,7 +40,7 @@ def scanInputFiles(files, _options):
abort( 'No tests defined' )
return [options,suites]
-lineCont_re = re.compile(r'(.*)\\s*$')
+lineCont_re = re.compile(r'(.*)\\\s*$')
def scanInputFile(fileName):
'''Scan single input file for test suites'''
# mode 'rb' is problematic in python3 - byte arrays don't behave the same as
More information about the Scummvm-git-logs
mailing list