Fix socket_test.sh vagrant based multi-host tests.

Change-Id: I8ef75a0c702098030c6814c127d3443820122327
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
This commit is contained in:
Dave Wallace
2017-09-06 01:59:43 -04:00
committed by Florin Coras
parent ab7b8d93cf
commit 3079a64e19
4 changed files with 302 additions and 123 deletions

View File

@ -8,8 +8,6 @@ Vagrant.configure(2) do |config|
if distro == 'centos7'
config.vm.box = "puppetlabs/centos-7.2-64-nocm"
config.ssh.insert_key = false
elsif distro == 'ubuntu1404'
config.vm.box = "puppetlabs/ubuntu-14.04-64-nocm"
else
config.vm.box = "puppetlabs/ubuntu-16.04-64-nocm"
end
@ -25,6 +23,8 @@ Vagrant.configure(2) do |config|
config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"install.sh"), :args => "/vpp"
config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"clearinterfaces.sh")
config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"run.sh")
elsif post_build == "vcl-test"
config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"vcl_test.sh"), :args => "/vpp vagrant"
end
# Add .gnupg dir in so folks can sign patches

View File

@ -40,7 +40,7 @@ if [ $DISTRIB_ID == "Ubuntu" ]; then
update-alternatives --install /bin/sh sh /bin/bash 100
# Install useful but non-mandatory tools
apt-get install -y emacs x11-utils git-review gdb gdbserver
apt-get install -y emacs x11-utils git-review gdb gdbserver xfce4-terminal iperf3
elif [ $DISTRIB_ID == "CentOS" ]; then
# Standard update + upgrade dance
yum check-update

View File

@ -0,0 +1,23 @@
#!/bin/bash
# Get Command Line arguements if present
VPP_DIR=$1
if [ "x$1" != "x" ]; then
VPP_DIR=$1
else
VPP_DIR=`dirname $0`/../../
fi
if [ "x$2" != "x" ]; then
SUDOCMD="sudo -H -u $2"
fi
echo 'Building VCL test apps'
cd $VPP_DIR
$SUDOCMD perl -pi -e 's/noinst_PROGRAMS/bin_PROGRAMS/g' $VPP_DIR/src/uri.am
$SUDOCMD make build-release
echo "export WS_ROOT=$VPP_DIR" | sudo -H -u vagrant tee /home/vagrant/.bash_aliases
source /home/vagrant/.bash_aliases
sudo cp $VPP_DIR/src/vpp/conf/80-vpp.conf /etc/sysctl.d
sudo sysctl -p/etc/sysctl.d/80-vpp.conf
sudo modprobe uio_pci_generic

File diff suppressed because it is too large Load Diff