blob: 37a6e80eae82026e14d197505d79c5403ca09184 [file] [log] [blame]
Govindraj Raja67501732023-09-22 16:27:06 -05001#
2# Copyright (c) 2023 Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# Expect script for Trusted Firmware Test Framework
7#
8
9prompt='Booting trusted firmware test framework'
10failures='Panic:'
11expect_string+=("i;${prompt};;${failures}")
12
13prompt='Running at NS-EL(1|2)'
14expect_string+=("i;${prompt}")
15
16prompt='Tests Failed : 0'
17failures='Unhandled exception on |Tests Failed : [^0]'
18expect_string+=("i;${prompt};;${failures}")
19
20prompt='Exiting tests.'
21failures='Tests Passed : 0'
22expect_string+=("i;${prompt};;${failures}")