From fe8979eb60285f48470baf0aefc474cd9afd6eb2 Mon Sep 17 00:00:00 2001 From: John Chapman <jchapman@cern.ch> Date: Wed, 12 Aug 2020 00:45:44 +0200 Subject: [PATCH] Migrate xAODEventInfoAthenaPool TPCnv unit tests to ComponentAccumulator xAODEventInfoAthenaPool_20.0.0.3_test - passes --- .../xAOD/xAODEventInfoAthenaPool/CMakeLists.txt | 5 +++-- .../xAODEventInfoAthenaPool_20.0.0.3_test.py | 16 ++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100755 Event/xAOD/xAODEventInfoAthenaPool/test/xAODEventInfoAthenaPool_20.0.0.3_test.py diff --git a/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt b/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt index d01acdcadcb..8ebfcf2a513 100644 --- a/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt +++ b/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt @@ -17,6 +17,7 @@ atlas_add_poolcnv_library( xAODEventInfoAthenaPoolPoolCnv # Install files from the package. atlas_install_joboptions( share/*.py ) +atlas_install_scripts( test/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} ) # Find the T/P test CMake code. find_package( AthenaPoolUtilitiesTest ) @@ -28,7 +29,7 @@ endif() # Set up the T/P converter test(s). if( NOT GENERATIONBASE ) - run_tpcnv_legacy_test( xAODEventInfoAthenaPool_20.0.0.3 AOD-20.0.0.3-full + run_tpcnv_test( xAODEventInfoAthenaPool_20.0.0.3 AOD-20.0.0.3-full REQUIRED_LIBRARIES xAODEventInfoAthenaPoolPoolCnv ) endif() -# TPCnv unit tests disabled for AthGeneration project due to a dependency on DetDescrCnvSvc \ No newline at end of file +# TPCnv unit tests disabled for AthGeneration project due to a dependency on DetDescrCnvSvc diff --git a/Event/xAOD/xAODEventInfoAthenaPool/test/xAODEventInfoAthenaPool_20.0.0.3_test.py b/Event/xAOD/xAODEventInfoAthenaPool/test/xAODEventInfoAthenaPool_20.0.0.3_test.py new file mode 100755 index 00000000000..ba68eed2c30 --- /dev/null +++ b/Event/xAOD/xAODEventInfoAthenaPool/test/xAODEventInfoAthenaPool_20.0.0.3_test.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python +""" +Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration +""" + +from AthenaPoolUtilities.TPCnvTestConfig import TPCnvTest + +if __name__ == "__main__": + infile = 'aod/AOD-20.0.0.3/AOD-20.0.0.3-full.pool.root' + + keys = [ + #xAOD::EventInfo + 'EventInfo' + ] + + TPCnvTest(infile, keys) -- GitLab