Merge "removing vtn-all jobs from distribution-test list"
authorLuis Gomez <ecelgp@gmail.com>
Fri, 29 Jan 2016 16:58:41 +0000 (16:58 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Fri, 29 Jan 2016 16:58:41 +0000 (16:58 +0000)
jjb/integration/include-raw-integration-deploy-controller-verify.sh

index d7b57d004a749e3df0ff05d06a913ccb23079bf7..2066e3e2b942049f5b8bdc129b8784997273077e 100644 (file)
@@ -108,5 +108,16 @@ cp ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log .
 echo "Kill controller"
 ps axf | grep karaf | grep -v grep | awk '{print "kill -9 " $1}' | sh
 
-# vim: ts=4 sw=4 sts=4 et ft=sh :
+echo "Detecting misplaced config files"
+pushd "${WORKSPACE}/${BUNDLEFOLDER}"
+XMLS_FOUND=`echo *.xml`
+popd
+if [ "$XMLS_FOUND" != "*.xml" ]; then
+    echo "Bug 4628 confirmed."
+    ## TODO: Uncomment the following when ODL is fixed, to guard against regression.
+    # exit 1
+else
+    echo "Bug 4628 not detected."
+fi
 
+# vim: ts=4 sw=4 sts=4 et ft=sh :