Allocate sufficient shm for the number of cores. 83/17683/1
authorPaul Vinciguerra <pvinci@vinciconsulting.com>
Tue, 19 Feb 2019 13:31:49 +0000 (08:31 -0500)
committerPaul Vinciguerra <pvinci@vinciconsulting.com>
Tue, 19 Feb 2019 13:31:49 +0000 (08:31 -0500)
    # for 4 cores:
    # framework.VppTestCase.MIN_REQ_SHM + (num_cores * framework.VppTestCase.SHM_PER_PROCESS)
    # 1073741824 == 1024M (1073741824 >> 20)

Change-Id: Iac56d69a48df019426e6b914d085635c8cd4df74
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
jjb/scripts/setup_vpp_ubuntu_docker_test.sh

index 4121d18..3c75757 100644 (file)
@@ -12,7 +12,10 @@ set -e -o pipefail
 OS_ID=$(grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
 
 if ! [ -z ${DOCKER_TEST} ] ; then
-               sudo mount -o remount /dev/shm -o size=512M || true
+        # for 4 cores:
+        # framework.VppTestCase.MIN_REQ_SHM + (num_cores * framework.VppTestCase.SHM_PER_PROCESS)
+        # 1073741824 == 1024M (1073741824 >> 20)
+               sudo mount -o remount /dev/shm -o size=1024M || true
         echo "/dev/shm remounted"
 fi