Skip to content
Snippets Groups Projects
Commit 60d866a2 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'trigger-ART-master' into 'master'

Fix output name for regtest file in TriggerTest ART

See merge request atlas/athena!16340
parents 7fa9e06a 762d4575
No related branches found
Tags v60r3
No related merge requests found
......@@ -33,17 +33,19 @@ timeout 1m chainDump.py -S --rootFile=expert-monitoring.root
export JOB_LOG_TAIL=${JOB_LOG%%.*}.tail.${JOB_LOG#*.}
tail -10000 ${JOB_LOG} > ${JOB_LOG_TAIL}
grep REGTEST athena.log > athena.regtest.new
grep REGTEST athena.log > athena.regtest
if [ -f ${REF_FOLDER}/athena.regtest ]; then
echo $(date "+%FT%H:%M %Z")" Running regtest"
timeout 1m regtest.pl --inputfile athena.regtest.new --reffile ${REF_FOLDER}/athena.regtest | tee regtest.log
timeout 1m regtest.pl --inputfile athena.regtest --reffile ${REF_FOLDER}/athena.regtest | tee regtest.log
echo "art-result: ${PIPESTATUS[0]} RegTest"
else
echo $(date "+%FT%H:%M %Z")" No reference athena.regtest found in ${REF_FOLDER}"
echo "art-result: 999 RegTest"
fi
mv athena.regtest athena.regtest.new
if [ -f ${REF_FOLDER}/expert-monitoring.root ]; then
echo $(date "+%FT%H:%M %Z")" Running rootcomp"
timeout 10m rootcomp.py ${REF_FOLDER}/expert-monitoring.root expert-monitoring.root | tee rootcompout.log
......
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