mardyk01 | b5002ac | 2023-07-21 17:11:14 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | # |
| 3 | # Copyright (c) 2023, Arm Limited. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | generate_lava_job() { |
| 9 | local model="base-aemva" |
| 10 | |
| 11 | uart="0" timeout="60" file="timeout_test.exp" track_expect |
| 12 | uart="1" timeout="60" file="panic_in_lower_el.exp" \ |
| 13 | set_primary="1" track_expect |
| 14 | |
| 15 | model="$model" \ |
| 16 | ete_plugin="1" \ |
| 17 | etm_present="1" \ |
| 18 | supports_trace_buffer_control_regs="1" \ |
| 19 | supports_trace_filter_regs="2" \ |
| 20 | bmcov_plugin="1" \ |
| 21 | bmcov_plugin_path="${coverage_trace_plugin}" \ |
| 22 | gen_model_params |
| 23 | |
| 24 | model="$model" gen_fvp_yaml |
| 25 | } |