Skip to content
Snippets Groups Projects
Commit 2d94281b authored by Julien Maurer's avatar Julien Maurer
Browse files

Merge branch '22.0-TCT-heartbeat' into '22.0'

add heartbeat to TCT tests comparing many entries

See merge request atlas/athena!56174
parents b1e1b442 b5617912
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,10 @@ Reco_tf.py \
rc1=$?
echo "art-result: $rc1 Reco"
# keep the job alive for up to 5 hours since diff-root doesn't display anything while running.
(for i in 1 1 1 1 1 ; do sleep 3600 ; touch ./my_art_heartbeat ; done) &
MY_ART_HEARTBEAT_PID=$!
rc2=-9999
if [ ${rc1} -eq 0 ]
then
......@@ -37,7 +41,9 @@ rc3=-9999
if [ ${rc1} -eq 0 ]
then
art.py compare ref . /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/TCT_Run3-22.0_references_for_comparison/test_bulkProcessing_13600collisions_SB \
--entries 100 --mode=semi-detailed --order-trees --ignore-exit-code diff-pool
--entries 10 --mode=semi-detailed --order-trees --ignore-exit-code diff-pool
rc3=$?
fi
echo "art-result: ${rc3} (against reference)"
kill $MY_ART_HEARTBEAT_PID || true
......@@ -20,6 +20,10 @@ Reco_tf.py \
rc1=$?
echo "art-result: $rc1 Reco"
# keep the job alive for up to 5 hours since diff-root doesn't display anything while running.
(for i in 1 1 1 1 1 ; do sleep 3600 ; touch ./my_art_heartbeat ; done) &
MY_ART_HEARTBEAT_PID=$!
rc2=-9999
if [ ${rc1} -eq 0 ]
then
......@@ -29,3 +33,5 @@ then
rc2=$?
fi
echo "art-result: ${rc2} (against previous nightly)"
kill $MY_ART_HEARTBEAT_PID || true
......@@ -20,6 +20,10 @@ Reco_tf.py \
rc1=$?
echo "art-result: $rc1 Reco"
# keep the job alive for up to 5 hours since diff-root doesn't display anything while running.
(for i in 1 1 1 1 1 ; do sleep 3600 ; touch ./my_art_heartbeat ; done) &
MY_ART_HEARTBEAT_PID=$!
rc2=-9999
if [ ${rc1} -eq 0 ]
then
......@@ -34,7 +38,9 @@ rc3=-9999
if [ ${rc1} -eq 0 ]
then
art.py compare ref . /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/TCT_Run3-22.0_references_for_comparison/test_bulkProcessing_13600collisions_SB_reduced \
--entries 100 --mode=semi-detailed --order-trees --ignore-exit-code diff-pool
--entries 10 --mode=semi-detailed --order-trees --ignore-exit-code diff-pool
rc3=$?
fi
echo "art-result: ${rc3} (against reference)"
kill $MY_ART_HEARTBEAT_PID || true
......@@ -19,6 +19,10 @@ Reco_tf.py \
rc1=$?
echo "art-result: $rc1 Reco"
# keep the job alive for up to 5 hours since diff-root doesn't display anything while running.
(for i in 1 1 1 1 1 ; do sleep 3600 ; touch ./my_art_heartbeat ; done) &
MY_ART_HEARTBEAT_PID=$!
rc2=-9999
if [ ${rc1} -eq 0 ]
then
......@@ -28,3 +32,5 @@ then
rc2=$?
fi
echo "art-result: ${rc2} (against previous nightly)"
kill $MY_ART_HEARTBEAT_PID || true
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