From 19fa6e547e2be2771f67577426164753bb8f2e5f Mon Sep 17 00:00:00 2001 From: Bernhard Gschaider Date: Wed, 4 Jun 2014 15:04:46 +0200 Subject: [PATCH] Extend minimum memory to 2.5 Gig because some tests are still failing --- vagrantSandbox/Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vagrantSandbox/Vagrantfile b/vagrantSandbox/Vagrantfile index 17d6d9b0e..8042f9b2f 100644 --- a/vagrantSandbox/Vagrantfile +++ b/vagrantSandbox/Vagrantfile @@ -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|