Skip to content
Snippets Groups Projects

fix: allow gaudirun return code 4 (ScheduledStop)

Merged Wouter Deconinck requested to merge allow-gaudirun-return-code-4 into master
13 files
+ 37
25
Compare changes
  • Side-by-side
  • Inline
Files
13
@@ -122,8 +122,9 @@ mkdir -p results
# Run Juggler
FULL_CAL_OPTION_DIR=benchmarks/clustering/options
gaudirun.py ${FULL_CAL_OPTION_DIR}/full_cal_reco.py
if [[ "$?" -ne "0" ]] ; then
echo "ERROR running digitization (juggler)"
status=$?
if [[ "$status" -ne "0" && "$status" -ne "4" ]] ; then
echo "ERROR running juggler, got $status"
exit 1
fi
Loading