Add more LAVA fvp tests, fix regex and sanitise job timeouts
Add more FVP test jobs to increase code coverage
I had taken the old LAVA tests from MPS2 and as it is trying to match colour codes, it meant some different coloured tests were being missed. Remove the colour codes from the regex.
Shorten the MPS2 job timeouts as the jobs are much shorter, and increase the FVP timeouts as some of the regression tests take a bit longer than expected.
Change-Id: I528a261593ee5b15019b8ee44269cf3ce07e1177
diff --git a/lava_helper/lava_create_jobs.py b/lava_helper/lava_create_jobs.py
index 24bf487..c4f9279 100755
--- a/lava_helper/lava_create_jobs.py
+++ b/lava_helper/lava_create_jobs.py
@@ -137,6 +137,8 @@
"docker_prefix": vars(user_args).get('docker_prefix', ''),
"license_variable": vars(user_args).get('license_variable', ''),
"build_job_url": artifact_store_url,
+ "cpu0_baseline": config.get("cpu0_baseline", 0),
+ "cpu0_initvtor_s": config.get("cpu0_initvtor_s", "0x10000000")
}
params.update(
{
@@ -179,7 +181,6 @@
# Only test this platform
platform = user_args.platform
config["platforms"] = {platform: config["platforms"][platform]}
-
# Generate the ouptut definition
definitions = generate_test_definitions(config, work_dir, user_args)
@@ -269,6 +270,9 @@
"--license-variable", dest="license_variable", action="store", help="License string for Fastmodels"
)
cmdargs.add_argument("--bl2", dest="bl2", action="store_true", help="BL2")
+ cmdargs.add_argument(
+ "--psa-api-suite", dest="psa_suite", action="store", help="PSA API Suite name"
+ )
return parser.parse_args()