Skip to content

Commit

Permalink
tests: Bump memory size for 3 sockets VMI
Browse files Browse the repository at this point in the history
Guest OS memory usage apparently goes up with socket count, and
with the current version of QEMU we can already see that 64M is
barely enough to run this test successfully: it's enough to run
a bunch of times in a row to encounter a failure. Let's increase
the VMI's memory size to 80M to ensure the test succeeds
consistently.

Signed-off-by: Andrea Bolognani <[email protected]>
  • Loading branch information
andreabolognani committed Apr 30, 2021
1 parent b2f3a65 commit 19fc526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/vmi_configuration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ var _ = Describe("[sig-compute]Configurations", func() {
}
vmi.Spec.Domain.Resources = v1.ResourceRequirements{
Requests: kubev1.ResourceList{
kubev1.ResourceMemory: resource.MustParse("64M"),
kubev1.ResourceMemory: resource.MustParse("80M"),
},
}

Expand Down

0 comments on commit 19fc526

Please sign in to comment.