blob: 8430f2b228ab1c2fc69769bb1c7eecfacdb4c93c [file] [log] [blame]
Leonardo Sandoval6eff3f72021-05-03 11:12:37 -05001#
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# Script to interact with a Linux kernel
7#
8
9# Expect 8 CPUs in total by default
10if [ -z "${num_cpus}" ]; then
11 num_cpus=8
12fi
13
14expect_string+=('Linux version')
15expect_string+=("SMP: Total of ${num_cpus} processors activated")
16expect_string+=('Freeing unused kernel memory')