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

[ROCm/rocshmem commit: 5dc7d4539e]
Cette révision appartient à :
Aurelien Bouteiller
2025-09-11 16:44:48 -04:00
révisé par GitHub
Parent 94547d8936
révision 6ec9247a54
+7 -4
Voir le fichier
@@ -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
;;