diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2017-07-25 11:38:28 +0200 |
---|---|---|
committer | Filip Tehlar <ftehlar@cisco.com> | 2017-07-25 11:38:28 +0200 |
commit | 013d3a566708c8877539befac1d85aec164e4f32 (patch) | |
tree | c9c2c1716d753af17b75333134c5736ff3be0148 | |
parent | e3c64ab6e6fe0ca0ad91b91272bb5b623405dcc5 (diff) |
Specify plugin directory when VPP startsstable/1707
Change-Id: Ia2a94d7ffa0a251de9e6338739ff80b63276401f
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
-rw-r--r-- | tests/data_plane/vpp_lite_topo/config.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/data_plane/vpp_lite_topo/config.sh b/tests/data_plane/vpp_lite_topo/config.sh index 94e54b3..f2f8502 100644 --- a/tests/data_plane/vpp_lite_topo/config.sh +++ b/tests/data_plane/vpp_lite_topo/config.sh @@ -7,6 +7,7 @@ ODL_PORT="8181" VPP_LITE_DIR=/vpp/build-root/install-vpp_debug-native/vpp/bin VPP_LITE_BIN=${VPP_LITE_DIR}/vpp VPP_API_TEST=/vpp/build-root/install-vpp_debug-native/vpp-api-test/bin/vpp_api_test +VPP_PLUGIN_DIR=${VPP_LITE_DIR}/../lib64/vpp_plugins ONE_ROOT=/vpp/one # read user config file if exists @@ -118,7 +119,8 @@ function start_vpp full-coredump \ cli-listen localhost:$1 } \ api-trace { on } api-segment { prefix "$2" } \ - plugins { plugin dpdk_plugin.so { disable } } + plugins { plugin dpdk_plugin.so { disable } } \ + plugin_path ${VPP_PLUGIN_DIR} } function print_status |