Richard W.M. Jones
2022-Mar-23 18:28 UTC
[Libguestfs] [PATCH p2v 2/2] tests: Increase memory for "make run-virt-p2v-in-a-vm"
With the general growth of Fedora, especially use of zram, it seems prudent to increase the amount of memory used in this test. Physical machines that we are emulating would have a lot more RAM than 1G. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index a5742b0..678eff4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -264,7 +264,7 @@ run-virt-p2v-in-a-vm: virt-p2v.img $(PHYSICAL_MACHINE) $(shell guestfish get-hv) \ -M pc,accel=kvm:tcg \ -cpu host \ - -m 1024 \ + -m 2048 \ -drive id=hd0,file=$(PHYSICAL_MACHINE),format=raw,if=ide \ -device piix3-usb-uhci \ -drive id=usb0,file=$<,format=raw,snapshot=on,if=none \ -- 2.35.1
Laszlo Ersek
2022-Mar-24 08:58 UTC
[Libguestfs] [PATCH p2v 2/2] tests: Increase memory for "make run-virt-p2v-in-a-vm"
On 03/23/22 19:28, Richard W.M. Jones wrote:> With the general growth of Fedora, especially use of zram, it seems > prudent to increase the amount of memory used in this test. Physical > machines that we are emulating would have a lot more RAM than 1G. > --- > Makefile.am | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Makefile.am b/Makefile.am > index a5742b0..678eff4 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -264,7 +264,7 @@ run-virt-p2v-in-a-vm: virt-p2v.img $(PHYSICAL_MACHINE) > $(shell guestfish get-hv) \ > -M pc,accel=kvm:tcg \ > -cpu host \ > - -m 1024 \ > + -m 2048 \ > -drive id=hd0,file=$(PHYSICAL_MACHINE),format=raw,if=ide \ > -device piix3-usb-uhci \ > -drive id=usb0,file=$<,format=raw,snapshot=on,if=none \ >Acked-by: Laszlo Ersek <lersek at redhat.com>