Skip to content
Snippets Groups Projects
Commit f1f12278 authored by Rafal Bielski's avatar Rafal Bielski :wave:
Browse files

Add required MessageCount step in TrigP1Test decodeBS test

parent 2f164170
No related branches found
No related tags found
No related merge requests found
......@@ -62,5 +62,16 @@ test.exec_steps = [writeBS, filterMain, decodeMain, filterCost, decodeCost]
test.check_steps = CheckSteps.default_check_steps(test)
test.get_step('CheckFile').input_file = 'ESD.pool.root,ESD.Module1.pool.root'
# Overwrite default MessageCount settings
# We are trying to lower the limits step by step
# Ultimately there should be no per-event messages
msgcount = test.get_step("MessageCount")
msgcount.thresholds = {
'WARNING': 600,
'INFO': 600,
'other': 100
}
msgcount.required = True # make the test exit code depend on this step
import sys
sys.exit(test.run())
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