mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-24 16:54:26 +01:00
To prepare for merging into kata-containers repository. Signed-off-by: Peng Tao <bergwolf@hyper.sh>
28 lines
502 B
Go
28 lines
502 B
Go
// Copyright (c) 2018 ARM Limited
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package main
|
|
|
|
const testCPUInfoTemplate = `
|
|
processor : 0
|
|
BogoMIPS : 500.00
|
|
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid
|
|
CPU implementer : 0x41
|
|
CPU architecture: 8
|
|
CPU variant : 0x1
|
|
CPU part : 0xd07
|
|
CPU revision : 2
|
|
|
|
processor : 1
|
|
BogoMIPS : 500.00
|
|
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid
|
|
CPU implementer : 0x41
|
|
CPU architecture: 8
|
|
CPU variant : 0x1
|
|
CPU part : 0xd07
|
|
CPU revision : 2
|
|
|
|
`
|