From daa0751ea10d9f90be8322f31c4515019a49cab2 Mon Sep 17 00:00:00 2001
From: Michael Davis <michael.davis@cern.ch>
Date: Wed, 6 Apr 2022 15:25:28 +0200
Subject: [PATCH] Resolve "var-tracking-assignments size limit exceeded in
 Catalogue unit tests"

---
 catalogue/CMakeLists.txt | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/catalogue/CMakeLists.txt b/catalogue/CMakeLists.txt
index dea112cb49..6f3fdcacb8 100644
--- a/catalogue/CMakeLists.txt
+++ b/catalogue/CMakeLists.txt
@@ -128,6 +128,9 @@ add_library (ctainmemorycatalogueunittests SHARED
   ${IN_MEMORY_CATALOGUE_UNIT_TESTS_LIB_SRC_FILES})
 set_property(TARGET ctainmemorycatalogueunittests PROPERTY SOVERSION "${CTA_SOVERSION}")
 set_property(TARGET ctainmemorycatalogueunittests PROPERTY   VERSION "${CTA_LIBVERSION}")
+# The test "filesWrittenToTape_many_archive_files" is over 1000 lines long and exceeds the variable tracking size limit.
+# We switch off this compiler option for this file to avoid compiling it twice.
+set_property(TARGET ctainmemorycatalogueunittests PROPERTY COMPILE_FLAGS "-fno-var-tracking-assignments")
 
 target_link_libraries (ctainmemorycatalogueunittests
   ctacatalogue ctadisk)
@@ -142,6 +145,9 @@ add_library (ctadbconfigcatalogueunittests SHARED
   ${DBCONFIG_CATALOGUE_UNIT_TESTS_LIB_SRC_FILES})
 set_property(TARGET ctadbconfigcatalogueunittests PROPERTY SOVERSION "${CTA_SOVERSION}")
 set_property(TARGET ctadbconfigcatalogueunittests PROPERTY   VERSION "${CTA_LIBVERSION}")
+# The test "filesWrittenToTape_many_archive_files" is over 1000 lines long and exceeds the variable tracking size limit.
+# We switch off this compiler option for this file to avoid compiling it twice.
+set_property(TARGET ctadbconfigcatalogueunittests PROPERTY COMPILE_FLAGS "-fno-var-tracking-assignments")
 
 target_link_libraries (ctadbconfigcatalogueunittests
   ctacatalogue)
-- 
GitLab