diff options
author | Ed Kern <ejk@cisco.com> | 2019-02-19 15:37:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2019-02-19 15:37:31 +0000 |
commit | 72d7847ab64b0afeba94a9e7b536bfd16ffc9c3f (patch) | |
tree | f588afe8e2bb7ba0bb4a3589f5c8b3d1135d7cda /jjb | |
parent | 222c84a97b69f6f85628675334e8d7e42e61a250 (diff) | |
parent | afbd4e1110a24760b922b6dd9d5838baf1b7f8cc (diff) |
Merge "Allocate sufficient shm for the number of cores."
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/scripts/setup_vpp_ubuntu_docker_test.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/jjb/scripts/setup_vpp_ubuntu_docker_test.sh b/jjb/scripts/setup_vpp_ubuntu_docker_test.sh index 4121d18bb..3c757578a 100644 --- a/jjb/scripts/setup_vpp_ubuntu_docker_test.sh +++ b/jjb/scripts/setup_vpp_ubuntu_docker_test.sh @@ -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 |