LAVA: Update start string in reg test monitor
Use "Execute test suites" as the start string in reg test monitor,
which will be surely printed in all configs with reg tests.
"Starting" would only be printed in Debug mode. So it will lead to
unexpected time out error in Release & Minsize mode, because the
monitor cannot match the start string.
Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: I2adf06387676c486670442b786f3947bec8efcf5
diff --git a/lava_helper/lava_helper_configs.py b/lava_helper/lava_helper_configs.py
index 9099e3e..5decd34 100644
--- a/lava_helper/lava_helper_configs.py
+++ b/lava_helper/lava_helper_configs.py
@@ -65,7 +65,7 @@
monitors_reg_tests = [
{
'name': 'regression_suite',
- 'start': 'Starting',
+ 'start': 'Execute test suites',
'end': 'End of Non-secure test suites',
'pattern': r"TEST: (?P<test_case_id>.+?) - (?P<result>(PASSED|FAILED|SKIPPED))",
'fixup': {"pass": "PASSED", "fail": "FAILED", "skip": "SKIPPED"},