Make sure that the machine has at least the 1.5 Gig memory which are

needed to run the whole test-Harness

--HG--
extra : amend_source : 406d5899c72b9601d1912491771a82498b3d6304
This commit is contained in:
Bernhard F.W. Gschaider 2014-05-30 23:24:50 +02:00
parent 028e182ba9
commit a88f338560

View file

@ -25,8 +25,9 @@ Vagrant.configure("2") do |config|
# # Use VBoxManage to customize the VM. For example to change memory: # # Use VBoxManage to customize the VM. For example to change memory:
# vb.customize ["modifyvm", :id, "--memory", "1024"] # vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.cpus=nrCPU vb.cpus=nrCPU
# make sure each CPU has enough memory # make sure each CPU has enough memory (at least 1.5 Gig)
vb.memory=512*(1+nrCPU) vb.memory=512*[(1+nrCPU),3].max
end
end end
# default # default