Extend minimum memory to 2.5 Gig because some tests are still failing
This commit is contained in:
parent
eb884c689c
commit
19fa6e547e
1 changed files with 2 additions and 2 deletions
4
vagrantSandbox/Vagrantfile
vendored
4
vagrantSandbox/Vagrantfile
vendored
|
@ -25,8 +25,8 @@ 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 (at least 1.5 Gig)
|
||||
vb.memory=512*[(1+nrCPU),4].max
|
||||
# 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),5].max
|
||||
end
|
||||
|
||||
config.vm.define :trusty do |trusty|
|
||||
|
|
Reference in a new issue