Skip to content
Snippets Groups Projects
Commit 54f92fe5 authored by Julie Kirk's avatar Julie Kirk
Browse files

Add art-result when references are missing

Currently we don't notice when there are missing reference files for the Trigger ART tests.
This change will return an error via art-result

	modified:   Trigger/TrigValidation/TriggerTest/test/exec_art_triggertest_post.sh


Former-commit-id: 2f5499ecb7c77378ec442b580b839c85293788f7
parent 6dc58043
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ if [ -f ${REF_FOLDER}/athena.regtest ]; then
echo "art-result: ${PIPESTATUS[0]} RegTest"
else
echo $(date "+%FT%H:%M %Z")" No reference athena.regtest found in ${REF_FOLDER}"
echo "art-result: 5 RegTest"
fi
if [ -f ${REF_FOLDER}/expert-monitoring.root ]; then
......@@ -53,6 +54,8 @@ if [ -f ${REF_FOLDER}/expert-monitoring.root ]; then
echo "art-result: ${PIPESTATUS[0]} CheckCounts"
else
echo $(date "+%FT%H:%M %Z")" No reference expert-monitoring.root found in ${REF_FOLDER}"
echo "art-result: 5 RootComp"
echo "art-result: 5 CheckCounts"
fi
if [ -f trig_cost.root ]; then
......
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