Fix: Update testcase regex
Regex was matching over multiple lines, so use a more restrictive one.
Change-Id: Ib0d2f32bcfd70fa8f9fede139cd5a3f3fb571b65
diff --git a/lava_helper/lava_helper_configs.py b/lava_helper/lava_helper_configs.py
index b4165a9..9cc6de6 100644
--- a/lava_helper/lava_helper_configs.py
+++ b/lava_helper/lava_helper_configs.py
@@ -93,7 +93,7 @@
'start': 'TFM level is: 3',
'end': 'End of Non-secure test suites',
'pattern': r"[\x1b]\\[37mTest suite '"
- r"(?P<test_case_id>.*)' has [\x1b]\\[32m"
+ r"(?P<test_case_id>[^\n]+)' has [\x1b]\\[32m"
r" (?P<result>PASSED|FAILED)",
'fixup': {"pass": "PASSED", "fail": "FAILED"},
'required': [
@@ -113,7 +113,7 @@
'start': 'Secure test suites summary',
'end': 'End of Secure test suites',
'pattern': r"[\x1b]\\[37mTest suite '(?P<"
- r"test_case_id>.*)' has [\x1b]\\[32m "
+ r"test_case_id>[^\n]+)' has [\x1b]\\[32m "
r"(?P<result>PASSED|FAILED)",
'fixup': {"pass": "PASSED", "fail": "FAILED"},
'required': [
@@ -134,7 +134,7 @@
'start': 'Non-secure test suites summary',
'end': r'End of Non-secure test suites',
'pattern': r"[\x1b]\\[37mTest suite '(?P"
- r"<test_case_id>.*)' has [\x1b]\\[32m "
+ r"<test_case_id>[^\n]+)' has [\x1b]\\[32m "
r"(?P<result>PASSED|FAILED)",
'fixup': {"pass": "PASSED", "fail": "FAILED"},
'required': [