From 5dc7d4539e71a443a923a0e1a43cb9c0304d50f9 Mon Sep 17 00:00:00 2001 From: Aurelien Bouteiller Date: Thu, 11 Sep 2025 16:44:48 -0400 Subject: [PATCH] Make it possible to test RMA GET and PUT separately (#250) DISABLE_GET removed from ALL, idea is that the CI scripts will invoke a subset that is known to work rather than ALL --- scripts/functional_tests/driver.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scripts/functional_tests/driver.sh b/scripts/functional_tests/driver.sh index 9eaaa9abe7..861dcf2f9d 100755 --- a/scripts/functional_tests/driver.sh +++ b/scripts/functional_tests/driver.sh @@ -286,9 +286,7 @@ TestRMAGet() { TestRMA() { TestRMAPut - if [ "0" == "$ROCSHMEM_DRIVER_DISABLE_GET" ]; then - TestRMAGet - fi + TestRMAGet } TestAMO() { @@ -644,7 +642,6 @@ LOG_DIR=$3 HOSTFILE=$4 DRIVER_RETURN_STATUS=0 -ROCSHMEM_DRIVER_DISABLE_GET="${ROCSHMEM_DRIVER_DISABLE_GET:-1}" ValidateInput $# ValidateLogDir $LOG_DIR @@ -663,6 +660,12 @@ case $TEST in *"rma") TestRMA ;; + *"put") + TestRMAPut + ;; + *"get") + TestRMAGet + ;; *"amo") TestAMO ;;