blob: 69086099294417bf1ee8756482444b3c10d2677a [file] [log] [blame]
Olivier Deprez5e434952020-06-15 18:30:42 +02001#
Chris Kay395d49d2022-10-17 13:31:21 +01002# Copyright (c) 2020-2022, Arm Limited. All rights reserved.
Olivier Deprez5e434952020-06-15 18:30:42 +02003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7source [file join [file dirname [info script]] handle-arguments.inc]
8
9expect {
Chris Kay395d49d2022-10-17 13:31:21 +010010 "OP-TEE version: " {
Olivier Deprez5e434952020-06-15 18:30:42 +020011 puts "<<OP-TEE version>>"
12 }
13 timeout {
14 exit_uart -1
15 }
16}
17
18expect {
19 "Primary CPU switching to normal world boot" {
20 puts "<<OP-TEE initialized>>"
21 }
22 timeout {
23 exit_uart -1
24 }
25}
26
Olivier Deprezd6ec5652021-02-10 07:47:34 +010027# Hold UART until test completes
28source [file join [file dirname [info script]] uart-hold.inc]