Extend minimum memory to 2.5 Gig because some tests are still failing

This commit is contained in:
Bernhard Gschaider 2014-06-04 15:04:46 +02:00
parent eb884c689c
commit 19fa6e547e

View file

@ -25,8 +25,8 @@ 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 (at least 1.5 Gig) # make sure each CPU has enough memory (at least .5 Gig per CPU. 2.5 Gig Minimum to run the testHarness)
vb.memory=512*[(1+nrCPU),4].max vb.memory=512*[(1+nrCPU),5].max
end end
config.vm.define :trusty do |trusty| config.vm.define :trusty do |trusty|