Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Quentin Berthet
athena
Commits
b67c77be
Commit
b67c77be
authored
6 years ago
by
amete
Browse files
Options
Downloads
Patches
Plain Diff
Bugfix the lack of passing RAW2ALL flag to the transforms
parent
f20cf09f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Tools/PROCTools/python/RunTier0Tests.py
+5
-5
5 additions, 5 deletions
Tools/PROCTools/python/RunTier0Tests.py
with
5 additions
and
5 deletions
Tools/PROCTools/python/RunTier0Tests.py
+
5
−
5
View file @
b67c77be
#!/usr/bin/env python
# Copyright (C) 2002-201
7
CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-201
9
CERN for the benefit of the ATLAS collaboration
## RunTier0Tests.py - Brief description of the purpose of this script (Has to be in PROC tools)
# $Id$
...
...
@@ -315,7 +315,7 @@ def RunFrozenTier0PolicyTest(q,inputFormat,maxEvents,CleanRunHeadDir,UniqID,RunP
logging
.
info
(
"
Reading the reference file from location
"
+
clean_dir
)
comparison_command
=
"
acmd.py diff-root
"
+
clean_dir
+
"
/my
"
+
inputFormat
+
"
.pool.root run_
"
+
q
+
"
/my
"
+
inputFormat
+
"
.pool.root --error-mode resilient --ignore-leaves RecoTimingObj_p1_EVNTtoHITS_timings RecoTimingObj_p1_HITStoRDO_timings RecoTimingObj_p1_RAWtoESD_mems RecoTimingObj_p1_RAWtoESD_timings RAWtoESD_mems RAWtoESD_timings ESDtoAOD_mems ESDtoAOD_timings HITStoRDO_mems HITStoRDO_timings --entries
"
+
str
(
maxEvents
)
+
"
> run_
"
+
q
+
"
/diff-root-
"
+
q
+
"
.
"
+
inputFormat
+
"
.log 2>&1
"
comparison_command
=
"
acmd.py diff-root
"
+
clean_dir
+
"
/my
"
+
inputFormat
+
"
.pool.root run_
"
+
q
+
"
/my
"
+
inputFormat
+
"
.pool.root --error-mode resilient --ignore-leaves RecoTimingObj_p1_EVNTtoHITS_timings RecoTimingObj_p1_HITStoRDO_timings RecoTimingObj_p1_RAWtoESD_mems RecoTimingObj_p1_RAWtoESD_timings
RecoTimingObj_p1_RAWtoALL_mems RecoTimingObj_p1_RAWtoALL_timings RAWtoALL_mems RAWtoALL_timings
RAWtoESD_mems RAWtoESD_timings ESDtoAOD_mems ESDtoAOD_timings HITStoRDO_mems HITStoRDO_timings --entries
"
+
str
(
maxEvents
)
+
"
> run_
"
+
q
+
"
/diff-root-
"
+
q
+
"
.
"
+
inputFormat
+
"
.log 2>&1
"
output
,
error
=
subprocess
.
Popen
([
'
/bin/bash
'
,
'
-c
'
,
comparison_command
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
).
communicate
()
# We want to catch/print both container additions/subtractions as well as
...
...
@@ -723,7 +723,7 @@ def main():
elif
RunOverlay
:
RunCleanOTest
(
q
,
overlay_hit_f
,
overlay_bkg_f
,
mypwd
,
cleanSetup
,
extraArg
,
CleanRunHeadDir
,
UniqName
)
else
:
RunCleanQTest
(
q
,
mypwd
,
cleanSetup
,
extraArg
,
CleanRunHeadDir
,
UniqName
,
doR2A
=
r2aMode
,
trigConfig
=
trigRun2Config
)
RunCleanQTest
(
q
,
mypwd
,
cleanSetup
,
extraArg
,
CleanRunHeadDir
,
UniqName
,
doR2A
=
r2aMode
,
trigConfig
=
trigRun2Config
)
pass
def
mypatchedqtest
(
q
=
q
):
...
...
@@ -775,7 +775,7 @@ def main():
elif
RunOverlay
:
RunCleanOTest
(
q
,
overlay_hit_f
,
overlay_bkg_f
,
mypwd
,
cleanSetup
,
extraArg
,
CleanRunHeadDir
,
UniqName
)
else
:
RunCleanQTest
(
q
,
mypwd
,
cleanSetup
,
extraArg
,
CleanRunHeadDir
,
UniqName
,
trigConfig
=
trigRun2Config
)
RunCleanQTest
(
q
,
mypwd
,
cleanSetup
,
extraArg
,
CleanRunHeadDir
,
UniqName
,
doR2A
=
r2aMode
,
trigConfig
=
trigRun2Config
)
pass
def
mypatchedqtest
(
q
=
q
):
...
...
@@ -784,7 +784,7 @@ def main():
elif
RunOverlay
:
RunPatchedOTest
(
q
,
overlay_hit_f
,
overlay_bkg_f
,
mypwd
,
cleanSetup
,
extraArg
)
else
:
RunPatchedQTest
(
q
,
mypwd
,
mysetup
,
extraArg
,
trigConfig
=
trigRun2Config
)
RunPatchedQTest
(
q
,
mypwd
,
mysetup
,
extraArg
,
doR2A
=
r2aMode
,
trigConfig
=
trigRun2Config
)
pass
mythreads
[
q
+
"
_clean
"
]
=
threading
.
Thread
(
target
=
mycleanqtest
)
...
...
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