From a19c98b20acca5be0998ec88bc734e14fe3a34c1 Mon Sep 17 00:00:00 2001 From: Edgar Gabriel Date: Thu, 11 Sep 2025 16:32:08 -0500 Subject: [PATCH] add an all-ro flag (#252) to specify the subset of tests that we want to run in Jenkins with the RO conduit [ROCm/rocshmem commit: b6b5a82d2b1295373f7dfca1919f7450f9710fea] --- projects/rocshmem/scripts/functional_tests/driver.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/projects/rocshmem/scripts/functional_tests/driver.sh b/projects/rocshmem/scripts/functional_tests/driver.sh index 861dcf2f9d..77eb3fe2f5 100755 --- a/projects/rocshmem/scripts/functional_tests/driver.sh +++ b/projects/rocshmem/scripts/functional_tests/driver.sh @@ -657,6 +657,13 @@ case $TEST in TestColl TestOther ;; + *"all-ro") + TestRMAPut + TestAMO + TestSigOps + TestColl + TestOther + ;; *"rma") TestRMA ;;