Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DaVinci
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb
DaVinci
Commits
2d8ffbcb
Commit
2d8ffbcb
authored
2 months ago
by
Marco Clemencic
Committed by
Christopher Rob Jones
1 week ago
Browse files
Options
Downloads
Patches
Plain Diff
Adapt tests to drop of HepMC
parent
5b70b0fa
No related branches found
Branches containing commit
Tags
v65r3
1 merge request
!1223
Adapt tests to the removal of HepMC related dictionaries
Pipeline
#11017528
passed
1 week ago
Stage: check
Stage: build
Stage: docs
Stage: .post
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DaVinciTests/python/DaVinciTests/QMTest/DaVinciExclusions.py
+31
-27
31 additions, 27 deletions
DaVinciTests/python/DaVinciTests/QMTest/DaVinciExclusions.py
with
31 additions
and
27 deletions
DaVinciTests/python/DaVinciTests/QMTest/DaVinciExclusions.py
+
31
−
27
View file @
2d8ffbcb
...
...
@@ -8,7 +8,8 @@
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
from
GaudiTest
import
LineSkipper
from
GaudiConf.QMTest.BaseTest
import
LineSkipper
from
GaudiConf.QMTest.LHCbExclusions
import
ignore_missing_hepmc_dicts
from
RecConf.QMTest.exclusions
import
preprocessor
as
RecPreprocessor
remove_uninteresting_lines
=
LineSkipper
(
...
...
@@ -42,32 +43,35 @@ remove_uninteresting_lines = LineSkipper(
)
# Remove known warnings from the references
remove_known_warnings
=
LineSkipper
(
regexps
=
[
# expected WARNINGs from the data broker
r
"
HiveDataBrokerSvc +WARNING non-reentrant algorithm: .*
"
,
# Until tck is implemented HltPackedDataDecoder/HltDecReportsDecoder will raise warning
r
"
HltPackedBufferDecoder +WARNING TCK in rawbank seems to be 0 .*
"
,
r
"
HltPackedBufferDe...WARNING TCK in rawbank seems to be 0 .*
"
,
r
"
HltDecReportsDecoder +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
Hlt. +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
Hlt2DecReports +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
SpruceDecReports +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
Spruce +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
# Until MC tools become functional, MC tools will run but the output is nonsense
"
WARNING: MC tools not functional yet outside Hlt2 - .*
"
,
# FunTuple warning for the update_counters: skipping event is no candidates are found
r
"
[a-zA-Z0-9]* +WARNING FunTupleBase<KeyedContainer<LHCb::MCParticle,Containers::KeyedObjectManager<Containers::hashmap> > >:: .*
"
,
r
"
DetectorPersistencySvc +INFO Added successfully Conversion service:XmlCnvSvc
"
,
r
"
DetectorDataSvc +SUCCESS Detector description database: git:/lhcb.xml
"
,
r
"
[a-zA-Z0-9]* +WARNING TransportSvc is currently incompatible with DD4HEP. .*
"
,
r
"
[a-zA-Z0-9]* +WARNING See https://gitlab.cern.ch/lhcb/Rec/-/issues/326 for more details
"
,
# backwards compatibility -- key is from manifest, not git
r
"
key 0x[0-9a-f#]+ has an explicitly configured overrule -- using that
"
,
# backwards compatibility -- old data
r
"
DstData raw bank has a zero encoding key, and it is not explicitly specified for decoding -- make sure that this really what you want
"
,
r
"
HltDecReports has a zero TCK, and it is not explicitly specified for decoding *
"
,
]
remove_known_warnings
=
(
LineSkipper
(
regexps
=
[
# expected WARNINGs from the data broker
r
"
HiveDataBrokerSvc +WARNING non-reentrant algorithm: .*
"
,
# Until tck is implemented HltPackedDataDecoder/HltDecReportsDecoder will raise warning
r
"
HltPackedBufferDecoder +WARNING TCK in rawbank seems to be 0 .*
"
,
r
"
HltPackedBufferDe...WARNING TCK in rawbank seems to be 0 .*
"
,
r
"
HltDecReportsDecoder +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
Hlt. +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
Hlt2DecReports +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
SpruceDecReports +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
r
"
Spruce +WARNING TCK obtained from rawbank seems to be 0 .*
"
,
# Until MC tools become functional, MC tools will run but the output is nonsense
"
WARNING: MC tools not functional yet outside Hlt2 - .*
"
,
# FunTuple warning for the update_counters: skipping event is no candidates are found
r
"
[a-zA-Z0-9]* +WARNING FunTupleBase<KeyedContainer<LHCb::MCParticle,Containers::KeyedObjectManager<Containers::hashmap> > >:: .*
"
,
r
"
DetectorPersistencySvc +INFO Added successfully Conversion service:XmlCnvSvc
"
,
r
"
DetectorDataSvc +SUCCESS Detector description database: git:/lhcb.xml
"
,
r
"
[a-zA-Z0-9]* +WARNING TransportSvc is currently incompatible with DD4HEP. .*
"
,
r
"
[a-zA-Z0-9]* +WARNING See https://gitlab.cern.ch/lhcb/Rec/-/issues/326 for more details
"
,
# backwards compatibility -- key is from manifest, not git
r
"
key 0x[0-9a-f#]+ has an explicitly configured overrule -- using that
"
,
# backwards compatibility -- old data
r
"
DstData raw bank has a zero encoding key, and it is not explicitly specified for decoding -- make sure that this really what you want
"
,
r
"
HltDecReports has a zero TCK, and it is not explicitly specified for decoding *
"
,
]
)
+
ignore_missing_hepmc_dicts
)
remove_known_fluctuating_counters
=
LineSkipper
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment