Code Coverage: Creating weekly run
Change-Id: Ia22b01b57af58833b3fb0cb5355b3e1287f9cbdb
Signed-off-by: mardyk01 <mark.dykes@arm.com>
diff --git a/run_config/fvp-aemv8a.rng_trap.bmcov b/run_config/fvp-aemv8a.rng_trap.bmcov
new file mode 100644
index 0000000..4c2e861
--- /dev/null
+++ b/run_config/fvp-aemv8a.rng_trap.bmcov
@@ -0,0 +1,23 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2023, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+generate_lava_job() {
+ local model="base-aemv8a"
+
+ # Due to a bug in the model, the FEAT_RNG_TRAP feature is not available
+ # in models that implement versions lower than 8.8, even though this is
+ # a v8.5 feature. Therefore, version 8.8 will be used while the FVP
+ # team fixes this problem. Once ready, the parameter arch_version will
+ # be changed to 8.5.
+ arch_version="8.8" \
+ has_rng_trap="1" \
+ has_rng="1" \
+ bmcov_plugin="1" \
+ bmcov_plugin_path="${coverage_trace_plugin}" \
+ gen_model_params
+ model="$model" gen_fvp_yaml
+}