summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2017-10-24 15:39:44 -0400
committerKeith Burns <alagalah@gmail.com>2017-10-25 19:12:57 +0000
commit4f6c3a9a13d92e507823c24580dd0715bcfea4ce (patch)
tree0087b06ad6290fbf0978c7bda973b459e89b8369
parent149ba779cff4ffc48d87ca67a2a8d4afd49b05f5 (diff)
VCL: Fix vcl test scripts to check vcl.am instead of uri.am
Change-Id: I34ab79ddf0a612be1f2a4223e46811516e5b317e Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
-rwxr-xr-xextras/vagrant/vcl_test.sh2
-rwxr-xr-xtest/scripts/socket_test.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/extras/vagrant/vcl_test.sh b/extras/vagrant/vcl_test.sh
index 3be185170d9..2203db66d8f 100755
--- a/extras/vagrant/vcl_test.sh
+++ b/extras/vagrant/vcl_test.sh
@@ -12,7 +12,7 @@ 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 perl -pi -e 's/noinst_PROGRAMS/bin_PROGRAMS/g' $VPP_DIR/src/vcl.am
$SUDOCMD make dpdk-install-dev build-release
sudo sysctl -p$VPP_DIR/src/vpp/conf/80-vpp.conf
sudo modprobe uio_pci_generic
diff --git a/test/scripts/socket_test.sh b/test/scripts/socket_test.sh
index 35e9c0be67c..1ff9af78bdc 100755
--- a/test/scripts/socket_test.sh
+++ b/test/scripts/socket_test.sh
@@ -254,7 +254,7 @@ if [ -z "$WS_ROOT" ] ; then
exit 1
fi
-if [[ "$(grep bin_PROGRAMS $WS_ROOT/src/uri.am)" = "" ]] ; then
+if [[ "$(grep bin_PROGRAMS $WS_ROOT/src/vcl.am)" = "" ]] ; then
$WS_ROOT/extras/vagrant/vcl_test.sh $WS_ROOT $USER
(cd $WS_ROOT; make build)
fi