From a88f338560af8a2840cb9b8908d50ad394bb886e Mon Sep 17 00:00:00 2001 From: "Bernhard F.W. Gschaider" Date: Fri, 30 May 2014 23:24:50 +0200 Subject: [PATCH] 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 --- vagrantSandbox/Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vagrantSandbox/Vagrantfile b/vagrantSandbox/Vagrantfile index 09476c10b..88f96db09 100644 --- a/vagrantSandbox/Vagrantfile +++ b/vagrantSandbox/Vagrantfile @@ -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