mirror of
				https://github.com/kata-containers/kata-containers.git
				synced 2025-11-03 19:15:58 +00:00 
			
		
		
		
	There were missing test cases in Arm64 for platform-dependent kata-check and kata-env, leading to 'make test' failure under kata-containers/runtime Fixes: #403 Signed-off-by: Penny Zheng <penny.zheng@arm.com>
		
			
				
	
	
		
			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
 | 
						|
 | 
						|
`
 |