Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Sergi Rodriguez Bosca
athena
Commits
ccb55280
Commit
ccb55280
authored
4 years ago
by
Tomasz Bold
Committed by
Walter Lampl
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
NewJO HLT tests uses references
parent
72173fe2
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
Trigger/TrigValidation/TriggerTest/test/test_trig_data_newJO_build.py
+14
-10
14 additions, 10 deletions
...Validation/TriggerTest/test/test_trig_data_newJO_build.py
with
14 additions
and
10 deletions
Trigger/TrigValidation/TriggerTest/test/test_trig_data_newJO_build.py
+
14
−
10
View file @
ccb55280
#!/usr/bin/env python
# Copyright (C) 2002-202
0
CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-202
1
CERN for the benefit of the ATLAS collaboration
# art-description: Trigger AthenaMT test running new-style job options
# art-type: build
...
...
@@ -20,7 +20,7 @@ copy_jo.auto_report_result = False # Do not set art-result for this step
copy_jo
.
output_stream
=
Step
.
Step
.
OutputStream
.
STDOUT_ONLY
# Do not create a log file for this step
# Generate configuration run file
run
=
ExecStep
.
ExecStep
(
'
athena
'
)
run
=
ExecStep
.
ExecStep
(
'
athena
_run
'
)
run
.
type
=
'
other
'
run
.
input
=
'
data
'
run
.
executable
=
'
python
'
...
...
@@ -34,15 +34,19 @@ run.prmon = False
# The full test configuration
test
=
Test
.
Test
()
test
.
art_type
=
'
build
'
#test.check_steps = CheckSteps.default_check_steps(test)
test
.
exec_steps
=
[
copy_jo
,
run
]
check_log
=
CheckSteps
.
CheckLogStep
(
'
CheckLog
'
)
check_log
.
log_file
=
run
.
get_log_file_name
()
test
.
check_steps
=
[
check_log
]
# Change RegTest pattern
#regtest = test.get_step('RegTest')
#regtest.regex = r'TrigSignatureMoniMT\s*INFO\sHLT_.*|TrigSignatureMoniMT\s*INFO\s-- #[0-9]+ (Events|Features).*'
test
.
check_steps
=
CheckSteps
.
default_check_steps
(
test
)
[
t
for
t
in
test
.
check_steps
if
isinstance
(
t
,
CheckSteps
.
MessageCountStep
)][
0
].
args
=
'
athena_run.log
'
chaindump
=
test
.
get_step
(
"
ChainDump
"
)
chaindump
.
args
=
'
--json --yaml ref_data_newJO_build.new
'
# In future, when this is primary test will enable strict reference checking
# The code below does so.
# refcomp = CheckSteps.ChainCompStep("CountRefComp")
# refcomp.input_file = 'ref_data_newJO_build.new'
# refcomp.required = True # Final exit code depends on this step
# CheckSteps.add_step_after_type(test.check_steps, CheckSteps.ChainDumpStep, refcomp)
import
sys
sys
.
exit
(
test
.
run
())
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