blob: d9907e3359fcb3317c9867ddc4e6a4370631a6d6 [file] [log] [blame]
laurenw-arm4fcd69a2023-03-20 16:28:13 -05001#
2# Copyright (c) 2023, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# Expect script for AP/RSS non-volatile counter platform test
7#
8
9source [file join [file dirname [info script]] handle-arguments.inc]
10
11# Trusted Firmware boot section
12source [file join [file dirname [info script]] trusted-firmware.inc]
13
Sandrine Bailleux28566d92023-05-05 16:06:51 +020014expect_string "Starting platform tests..."
15
16expect {
17 "Platform tests failed." {
18 exit_uart -1
19 }
20 "Platform tests succeeded." {
21 exit_uart 0
22 }
23}
24
25exit_uart -1