blob: 86f1ae5a473c1036c6f6a89eadf4b18a9bdc5b08 [file] [log] [blame]
Manish V Badarkhe29f51482021-08-27 01:59:50 +01001#!/usr/bin/env bash
2#
Chris Kay4e8aaf12022-09-01 15:21:55 +01003# Copyright (c) 2021-2022, Arm Limited. All rights reserved.
Manish V Badarkhe29f51482021-08-27 01:59:50 +01004#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
Chris Kay4e8aaf12022-09-01 15:21:55 +01008generate_lava_job() {
Manish V Badarkhe29f51482021-08-27 01:59:50 +01009 local model="base-aemva"
10
Chris Kay4e8aaf12022-09-01 15:21:55 +010011 uart="0" timeout="60" file="timeout_test.exp" track_expect
12 uart="1" timeout="60" file="unhandled_exception_at_el3.exp" track_expect
13
14 model="$model" \
15 ete_plugin="1" \
16 etm_present="1" \
17 model_build="6684" \
18 model_flavour="Linux64_GCC-6.4" \
19 model_version="0.0" \
20 supports_trace_buffer_control_regs="1" \
21 supports_trace_filter_regs="2" \
22 gen_model_params
Manish V Badarkhe29f51482021-08-27 01:59:50 +010023
24 model="$model" gen_fvp_yaml
25}