From b6b5a82d2b1295373f7dfca1919f7450f9710fea 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 --- scripts/functional_tests/driver.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/functional_tests/driver.sh b/scripts/functional_tests/driver.sh index 861dcf2f9d..77eb3fe2f5 100755 --- a/scripts/functional_tests/driver.sh +++ b/scripts/functional_tests/driver.sh @@ -657,6 +657,13 @@ case $TEST in TestColl TestOther ;; + *"all-ro") + TestRMAPut + TestAMO + TestSigOps + TestColl + TestOther + ;; *"rma") TestRMA ;;