Olivier Deprez | 5e43495 | 2020-06-15 18:30:42 +0200 | [diff] [blame^] | 1 | # |
2 | # Copyright (c) 2020, Arm Limited. All rights reserved. | ||||
3 | # | ||||
4 | # SPDX-License-Identifier: BSD-3-Clause | ||||
5 | # | ||||
6 | |||||
7 | source [file join [file dirname [info script]] handle-arguments.inc] | ||||
8 | |||||
9 | expect { | ||||
10 | "OP-TEE version: 3.3" { | ||||
11 | puts "<<OP-TEE version>>" | ||||
12 | } | ||||
13 | timeout { | ||||
14 | exit_uart -1 | ||||
15 | } | ||||
16 | } | ||||
17 | |||||
18 | expect { | ||||
19 | "Primary CPU switching to normal world boot" { | ||||
20 | puts "<<OP-TEE initialized>>" | ||||
21 | } | ||||
22 | timeout { | ||||
23 | exit_uart -1 | ||||
24 | } | ||||
25 | } | ||||
26 | |||||
27 | exit_uart 0 |