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:
parent
028e182ba9
commit
a88f338560
1 changed files with 3 additions and 2 deletions
5
vagrantSandbox/Vagrantfile
vendored
5
vagrantSandbox/Vagrantfile
vendored
|
@ -25,8 +25,9 @@ Vagrant.configure("2") do |config|
|
|||
# # Use VBoxManage to customize the VM. For example to change memory:
|
||||
# vb.customize ["modifyvm", :id, "--memory", "1024"]
|
||||
vb.cpus=nrCPU
|
||||
# make sure each CPU has enough memory
|
||||
vb.memory=512*(1+nrCPU)
|
||||
# make sure each CPU has enough memory (at least 1.5 Gig)
|
||||
vb.memory=512*[(1+nrCPU),3].max
|
||||
end
|
||||
end
|
||||
|
||||
# default
|
||||
|
|
Reference in a new issue