mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-12 05:12:37 +00:00
runtime: fix failing unit tests on ppc64le
A few CPU related test cases were failing as the version was being verified against Power8 while the CI machine is Power9. Fixes: #5531 Signed-off-by: Amulyam24 <amulmek1@in.ibm.com>
This commit is contained in:
parent
486b8a0538
commit
394777291d
@ -9,7 +9,7 @@ import "testing"
|
|||||||
|
|
||||||
func getExpectedHostDetails(tmpdir string) (HostInfo, error) {
|
func getExpectedHostDetails(tmpdir string) (HostInfo, error) {
|
||||||
expectedVendor := ""
|
expectedVendor := ""
|
||||||
expectedModel := "POWER8"
|
expectedModel := "POWER9"
|
||||||
expectedVMContainerCapable := true
|
expectedVMContainerCapable := true
|
||||||
return genericGetExpectedHostDetails(tmpdir, expectedVendor, expectedModel, expectedVMContainerCapable)
|
return genericGetExpectedHostDetails(tmpdir, expectedVendor, expectedModel, expectedVMContainerCapable)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user