File tree Expand file tree Collapse file tree
prodtests/full-system-test Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33# ---------------------------------------------------------------------------------------------------------------------
44# Get this script's directory and load common settings (use zsh first (e.g. on Mac) and fallback on `readlink -f` if zsh is not there)
55MYDIR=" $( dirname $( realpath $0 ) ) "
6+ source $MYDIR /gen_topo_helper_functions.sh
67source $MYDIR /setenv.sh
78
89if [[ $EPNSYNCMODE == 0 && $DPL_CONDITION_BACKEND != " http://o2-ccdb.internal" && $DPL_CONDITION_BACKEND != " http://localhost:8084" && $DPL_CONDITION_BACKEND != " http://127.0.0.1:8084" ]]; then
@@ -492,7 +493,12 @@ if [[ ! -z "$EXTRA_WORKFLOW" ]]; then
492493fi
493494
494495if [[ ! -z " $ADD_EXTRA_WORKFLOW " ]]; then
495- add_W $ADD_EXTRA_WORKFLOW
496+ OLD_IFS=$IFS
497+ IFS=' ,'
498+ for wf in $ADD_EXTRA_WORKFLOW ; do
499+ [[ ! -z " $wf " ]] && add_W $wf
500+ done
501+ IFS=" $OLD_IFS "
496502fi
497503
498504# ---------------------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ if [ " 0$O2DPG_ROOT " == " 0" ]; then
4+ echo O2DPG environment not loaded
5+ exit 1
6+ fi
7+
8+ source $O2DPG_ROOT /DATA/common/gen_topo_helper_functions.sh
You can’t perform that action at this time.
0 commit comments