Manage ODL Jenkins views with view-templates
[releng/builder.git] / jjb / integration / update-csit-tests.sh
index a56fd02a5ea8fcbd1958554154b211c91b914526..b6da8dcf421b8abae559d5e5b4047542902e28bc 100644 (file)
@@ -22,7 +22,9 @@ jobs=($(xmlstarlet sel -t -m '//hudson/job' \
 job_list="${WORKSPACE}/jjb/integration/csit-jobs-${STREAM}.lst"
 rm "$job_list"
 for job in "${jobs[@]}"; do
+    echo "Checking if $job is blacklisted."
     if [[ ! $job =~ update-csit-tests|${CSIT_BLACKLIST// /\|} ]]; then
         echo "${job}," >> "$job_list"
+        echo "    Added $job to job list."
     fi
 done