Add additional debugging for update-csit-tests 51/75251/3
authorThanh Ha <thanh.ha@linuxfoundation.org>
Fri, 17 Aug 2018 02:46:17 +0000 (22:46 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Thu, 23 Aug 2018 02:17:10 +0000 (22:17 -0400)
Change-Id: I79967f1fd5a2b9cc0afac96597ba9195d2a00a4e
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
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