VPP: ASSuME proof pkg lister 38/10738/1
authorEd Kern <ejk@cisco.com>
Wed, 21 Feb 2018 16:55:09 +0000 (09:55 -0700)
committerEd Kern <ejk@cisco.com>
Wed, 21 Feb 2018 16:55:09 +0000 (09:55 -0700)
Change-Id: Ie4e6289ef024ad0b40734d01d5990c43ff845b52
Signed-off-by: Ed Kern <ejk@cisco.com>
jjb/scripts/setup_vpp_ubuntu_docker_test.sh

index d0140c1..0909139 100644 (file)
@@ -17,13 +17,14 @@ if ! [ -z ${DOCKER_TEST} ] ; then
 fi
 
 if [ "${OS_ID}" == "ubuntu" ]; then
-    dpkg-query -W -f='${binary:Package}\t${Version}\n'
-    pip list
+    dpkg-query -W -f='${binary:Package}\t${Version}\n' || true
+    pip list || true
 elif [ "${OS_ID}" == "centos" ]; then
-    yum list installed
-    pip list
+    yum list installed || true
+    pip list || true
 elif [ "${OS_ID}" == "opensuse" ]; then
-    pip list
+    yum list installed || true
+    pip list || true
 fi
 if [ "x${IS_CSIT_VPP_JOB}" == "xTrue" ]; then
        (cd dpdk ; apt-get download vpp-dpdk-dkms > /dev/null 2>&1) || true