Skip to content
Snippets Groups Projects
Commit 4a98f879 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Disable unit test post-processing where not used

Be explicit if not reference file comparison is used by unit test.
parent 70d51891
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!48708Fixes to unit test post-processing
......@@ -21,7 +21,7 @@ atlas_add_component( BeamPipeGeoModel
# Test(s) in the package:
atlas_add_test( BeamPipeGMConfig_test
SCRIPT test/BeamPipeGMConfig_test.py
PROPERTIES TIMEOUT 300 )
POST_EXEC_SCRIPT nopost.sh )
# Install files from the package:
atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
......
......@@ -24,4 +24,5 @@ atlas_add_component( PileUpComps
atlas_add_test( PileUpHashHelper_test
SOURCES test/PileUpHashHelper_test.cxx src/PileUpHashHelper.cxx
INCLUDE_DIRS src ${GTEST_INCLUDE_DIRS}
LINK_LIBRARIES xAODEventInfo ${GTEST_LIBRARIES} )
LINK_LIBRARIES xAODEventInfo ${GTEST_LIBRARIES}
POST_EXEC_SCRIPT nopost.sh )
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
# Declare the package name:
atlas_subdir( DCSCalculator2 )
......@@ -14,5 +14,6 @@ atlas_install_scripts( share/*.py )
# Test: does DCS Calculator work?
atlas_add_test( DCSCRun
SCRIPT dcsc.py -r348885 -d 'sqlite://$<SEMICOLON>schema=/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/AthDataQuality/dcscalc_input_348885.db$<SEMICOLON>dbname=CONDBR2'
POST_EXEC_SCRIPT nopost.sh
PROPERTIES TIMEOUT 360
)
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
# Declare the package name:
atlas_subdir( GoodRunsLists )
......@@ -55,7 +55,7 @@ endif()
atlas_add_test( GRLSelectionTool_test
SOURCES test/GRLSelectionTool_test.cxx
LINK_LIBRARIES GoodRunsListsLib ${testLibs}
PROPERTIES TIMEOUT 300 )
POST_EXEC_SCRIPT nopost.sh )
# Install files from the package:
atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
......
......@@ -10,15 +10,19 @@ atlas_install_scripts( test/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
if( NOT GENERATIONBASE )
atlas_add_test( EVNT_InputGeo_test
SCRIPT test/AtlasGeometryConfig_EVNT_test.py
PROPERTIES TIMEOUT 300 )
POST_EXEC_SCRIPT nopost.sh )
endif()
if( NOT SIMULATIONBASE AND NOT GENERATIONBASE )
atlas_add_test( AtlasGeoModelConfig SCRIPT python -m AtlasGeoModel.GeoModelConfig POST_EXEC_SCRIPT nopost.sh )
atlas_add_test( AtlasGeoModelConfig
SCRIPT python -m AtlasGeoModel.GeoModelConfig
POST_EXEC_SCRIPT nopost.sh )
atlas_add_test( HITS_InputGeo_test
SCRIPT test/AtlasGeometryConfig_HITS_test.py
POST_EXEC_SCRIPT nopost.sh
PROPERTIES TIMEOUT 600 )
atlas_add_test( AOD_InputGeo_test
SCRIPT test/AtlasGeometryConfig_AOD_test.py
POST_EXEC_SCRIPT nopost.sh
PROPERTIES TIMEOUT 900 )
endif()
......@@ -23,5 +23,6 @@ atlas_install_joboptions( share/*.py )
# Tests in the package:
atlas_add_test( ROBDataProviderSvcMT
SCRIPT test/test_ROBDataProviderSvcMT.sh
PROPERTIES TIMEOUT 1200 )
SCRIPT test/test_ROBDataProviderSvcMT.sh
POST_EXEC_SCRIPT nopost.sh
PROPERTIES TIMEOUT 1200 )
......@@ -23,7 +23,7 @@ atlas_add_test( BeamEffectsAlg_test
#Added test of new component accumulator syntax
atlas_add_test( BeamEffectsAlgConfig_test
SCRIPT python/BeamEffectsAlgConfig.py
PROPERTIES TIMEOUT 300 )
POST_EXEC_SCRIPT nopost.sh )
atlas_add_component( BeamEffects
src/*.cxx
......
......@@ -14,5 +14,6 @@ atlas_install_runtime( data/*.ascii )
atlas_add_test(test_MC16a_Digi_tf_configuration
SCRIPT test/test_MC16a_Digi_tf_configuration.py
POST_EXEC_SCRIPT nopost.sh
PROPERTIES TIMEOUT 600
PROPERTIES RESOURCE_LOCK DigiTf)
......@@ -33,6 +33,7 @@ atlas_add_test( CollectionMerger_test
LINK_LIBRARIES TestTools GaudiKernel AthenaBaseComps AtlasDetDescr
ISF_Event ISF_InterfacesLib PmbCxxUtils InDetSimEvent CaloSimEvent LArSimEvent
TileSimEvent MuonSimEvent RecEvent ${GTEST_LIBRARIES} #${GMOCK_LIBRARIES}
POST_EXEC_SCRIPT nopost.sh
ENVIRONMENT "JOBOPTSEARCHPATH=${CMAKE_CURRENT_SOURCE_DIR}/share" )
atlas_add_test(collection_merger_helpers_tests
......@@ -57,6 +58,7 @@ atlas_add_test( SimKernelMT_test
GeneratorObjects
HepMC_InterfacesLib
TrackRecordLib
POST_EXEC_SCRIPT nopost.sh
ENVIRONMENT
"JOBOPTSEARCHPATH=${CMAKE_CURRENT_SOURCE_DIR}/test"
POST_EXEC_SCRIPT nopost.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment