X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=bootstrap.sh;h=fac874546db7236d539cb2f37a3a4c5fdeb6229b;hp=55b75834022f3e9a8071d4473bc192e064537524;hb=bf05994fbf8308bb2482c494a2b28949837fcc6f;hpb=fe1975eb1ac994df1bd759deda7154bb7dd9d7a7 diff --git a/bootstrap.sh b/bootstrap.sh index 55b7583402..fac874546d 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -26,13 +26,15 @@ OS_VERSION_ID=$(grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\ if [ "$OS_ID" == "centos" ]; then DISTRO="CENTOS" PACKAGE="rpm" - sudo yum install -y python-devel python-virtualenv + # TODO: Remove when corresponding part of CSIT-1546 is addressed. + sudo yum install -y python-devel python-virtualenv openssh-clients sshpass elif [ "$OS_ID" == "ubuntu" ]; then DISTRO="UBUNTU" PACKAGE="deb" + # TODO: Remove when corresponding part of CSIT-1546 is addressed. export DEBIAN_FRONTEND=noninteractive sudo apt-get -y update - sudo apt-get -y install libpython2.7-dev python-virtualenv + sudo apt-get -y install libpython2.7-dev python-virtualenv sshpass else echo "$OS_ID is not yet supported." exit 1 @@ -101,7 +103,7 @@ VIRL_SERVER_EXPECTED_STATUS="PRODUCTION" SSH_OPTIONS="-i ${VIRL_PKEY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o BatchMode=yes -o LogLevel=error" -TEST_GROUPS=("crypto,ip4_tunnels.softwire,ip4_tunnels.vxlan" "ip4,ip4_tunnels.gre,ip4_tunnels.lisp,ip6_tunnels.vxlan,ip6_tunnels.lisp,vm_vhost.ip4,vm_vhost.ip6" "interfaces,ip6,l2bd,l2xc,vm_vhost.l2bd,vm_vhost.l2xc,telemetry") +TEST_GROUPS=("ip4_tunnels,l2bd" "ip4,ip6_tunnels,l2xc") SUITE_PATH="tests.vpp.func" SKIP_PATCH="SKIP_PATCH"