From 2abea146d26f78781cd958c8570607c74bdd8d7a Mon Sep 17 00:00:00 2001 From: Richard Top Date: Fri, 14 Jun 2024 09:40:42 +0000 Subject: [PATCH] Fix --extra-bind-paths argument in bot/test.sh --- bot/test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bot/test.sh b/bot/test.sh index 4984340e6e..04bff346cd 100755 --- a/bot/test.sh +++ b/bot/test.sh @@ -204,6 +204,9 @@ if [[ -z ${RESUME_DIR} ]]; then else TEST_STEP_ARGS+=("--resume" "${RESUME_DIR}") fi +# Bind mount /sys/fs/cgroup so that we can determine the amount of memory available in our cgroup for +# Reframe configuration +TEST_STEP_ARGS+=("--extra-bind-paths" "/sys/fs/cgroup:/hostsys/fs/cgroup:ro") # prepare arguments to test_suite.sh (specific to test step) declare -a TEST_SUITE_ARGS=()