Leonardo Sandoval | 6eff3f7 | 2021-05-03 11:12:37 -0500 | [diff] [blame] | 1 | # |
| 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 |
| 10 | if [ -z "${num_cpus}" ]; then |
| 11 | num_cpus=8 |
| 12 | fi |
| 13 | |
Leonardo Sandoval | 5cfc11f | 2021-09-08 16:08:13 -0500 | [diff] [blame^] | 14 | expect_string+=('i;Linux version') |
| 15 | expect_string+=("i;SMP: Total of ${num_cpus} processors activated") |
| 16 | expect_string+=('i;Freeing unused kernel memory') |