Skip to content
Snippets Groups Projects
Commit a72ecdf0 authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

StoreGate INFO messages changing to VERBOSE. (TestTools-00-07-38)

	* Tagging TestTools-00-07-38.
	* share/post.sh: StoreGate INFO messages changing to VERBOSE.

2016-05-03 Attila Krasznahorkay <Attila.Krasznahorkay@cern.ch>
	* Taught the package how to build in standalone mode with
	  CMake.
	* Tagging as TestTools-00-07-37


Former-commit-id: 031bb19047bc82b4fdc8acb5a54486cc57fe1240
parent 6701175f
No related branches found
No related tags found
No related merge requests found
# $Id: CMakeLists.txt 744649 2016-05-03 19:33:39Z krasznaa $
################################################################################
# Package: TestTools
################################################################################
......@@ -6,25 +7,28 @@
atlas_subdir( TestTools )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
Control/AthenaCommon
TestPolicy
PRIVATE
GaudiKernel )
atlas_depends_on_subdirs(
PUBLIC
Control/AthenaCommon
TestPolicy
PRIVATE
GaudiKernel )
# External dependencies:
find_package( PythonLibs )
# Component(s) in the package:
atlas_add_library( TestTools
src/*.cxx
PUBLIC_HEADERS TestTools
INCLUDE_DIRS ${PYTHON_INCLUDE_DIRS}
LINK_LIBRARIES ${PYTHON_LIBRARIES}
PRIVATE_LINK_LIBRARIES GaudiKernel )
# In standalone mode we just use the headers from the package. While in
# offline mode we build a proper library.
if( XAOD_STANDALONE )
atlas_add_library( TestTools
TestTools/*.h
INTERFACE
PUBLIC_HEADERS TestTools )
else()
atlas_add_library( TestTools
TestTools/*.h src/*.cxx
PUBLIC_HEADERS TestTools
PRIVATE_LINK_LIBRARIES GaudiKernel )
endif()
# Install files from the package:
atlas_install_python_modules( python/*.py )
atlas_install_joboptions( share/*.py )
atlas_install_scripts( share/runUnitTests.sh share/post.sh )
......@@ -43,4 +43,3 @@ macro_append DOXYGEN_INPUT " ../doc"
macro_append DOXYGEN_INPUT " ../share"
macro_append DOXYGEN_FILE_PATTERNS " *.sh"
macro_append DOXYGEN_FILE_PATTERNS " *.txt"
......@@ -145,6 +145,9 @@ PP="$PP"'|^ConditionStore +INFO Stop ConditionStore'
# Differences between Gaudi versions.
PP="$PP"'|DEBUG input handles:|DEBUG output handles:|DEBUG Data Deps for|DEBUG Property update for OutputLevel :|-ExtraInputs |-ExtraOutputs |-Cardinality |-IsClonable |-NeededResources |-Timeline '
# StoreGate INFO messages changed to VERBOSE
PP="$PP"'|^StoreGateSvc +(INFO|VERBOSE) (Stop|stop|Start)'
if [ "$extrapatterns" != "" ]; then
PP="$PP""|$extrapatterns"
......
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