From b95e13aaf575de980ae6b1b86da8887902ad3623 Mon Sep 17 00:00:00 2001
From: Nils Krumnack <krumnack@iastate.edu>
Date: Mon, 11 Sep 2023 09:25:47 -0500
Subject: [PATCH] disable the block configuration tests for 21.2

In 21.2 we never made the block configuration fully agree with the
sequence configuration and we stopped developing it, so I disabled the
corresponding tests.  Leaving the tests commented out since this
branch is on its way out and if somebody tries to investigate what's
going on I want to leave them with a trace of it.
---
 .../AnalysisAlgorithmsConfig/CMakeLists.txt   | 40 ++++++++++---------
 1 file changed, 22 insertions(+), 18 deletions(-)

diff --git a/PhysicsAnalysis/Algorithms/AnalysisAlgorithmsConfig/CMakeLists.txt b/PhysicsAnalysis/Algorithms/AnalysisAlgorithmsConfig/CMakeLists.txt
index 2e4a543757c7..bb8ff17b801c 100644
--- a/PhysicsAnalysis/Algorithms/AnalysisAlgorithmsConfig/CMakeLists.txt
+++ b/PhysicsAnalysis/Algorithms/AnalysisAlgorithmsConfig/CMakeLists.txt
@@ -22,30 +22,34 @@ if( XAOD_STANDALONE )
       SCRIPT FullCPAlgorithmsTest_eljob.py --data-type afii --unit-test --direct-driver
       PROPERTIES TIMEOUT 600 )
 
-   atlas_add_test( testJobDataConfig
-      SCRIPT FullCPAlgorithmsTest_eljob.py --data-type data --unit-test --direct-driver --block-config
-      PROPERTIES TIMEOUT 600 )
-   atlas_add_test( testJobFullSimConfig
-      SCRIPT FullCPAlgorithmsTest_eljob.py --data-type mc --unit-test --direct-driver --block-config
-      PROPERTIES TIMEOUT 600 )
-   atlas_add_test( testJobFastSimConfig
-      SCRIPT FullCPAlgorithmsTest_eljob.py --data-type afii --unit-test --direct-driver --block-config
-      PROPERTIES TIMEOUT 600 )
+   # disable these tests because the block config is no longer supported in 21.2
+               
+   # atlas_add_test( testJobDataConfig
+   #    SCRIPT FullCPAlgorithmsTest_eljob.py --data-type data --unit-test --direct-driver --block-config
+   #    PROPERTIES TIMEOUT 600 )
+   # atlas_add_test( testJobFullSimConfig
+   #    SCRIPT FullCPAlgorithmsTest_eljob.py --data-type mc --unit-test --direct-driver --block-config
+   #    PROPERTIES TIMEOUT 600 )
+   # atlas_add_test( testJobFastSimConfig
+   #    SCRIPT FullCPAlgorithmsTest_eljob.py --data-type afii --unit-test --direct-driver --block-config
+   #    PROPERTIES TIMEOUT 600 )
 
 else()
 
    atlas_install_joboptions( share/*_jobOptions.py )
 
-   atlas_add_test( testJobDataCompare
-      SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/share/BlockConfigurationAthenaTest.sh data
-      PROPERTIES TIMEOUT 600 )
+   # disable these tests because the block config is no longer supported in 21.2
 
-   atlas_add_test( testJobFullSimCompare
-      SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/share/BlockConfigurationAthenaTest.sh mc
-      PROPERTIES TIMEOUT 600 )
+   # atlas_add_test( testJobDataCompare
+   #    SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/share/BlockConfigurationAthenaTest.sh data
+   #    PROPERTIES TIMEOUT 600 )
 
-   atlas_add_test( testJobFastSimCompare
-      SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/share/BlockConfigurationAthenaTest.sh afii
-      PROPERTIES TIMEOUT 600 )
+   # atlas_add_test( testJobFullSimCompare
+   #    SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/share/BlockConfigurationAthenaTest.sh mc
+   #    PROPERTIES TIMEOUT 600 )
+
+   # atlas_add_test( testJobFastSimCompare
+   #    SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/share/BlockConfigurationAthenaTest.sh afii
+   #    PROPERTIES TIMEOUT 600 )
 
 endif()
-- 
GitLab