diff options
author | Peter Mikus <pmikus@cisco.com> | 2018-07-30 17:28:16 +0000 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2018-08-10 09:16:13 +0000 |
commit | 325bf96ce5fc13780fab0731855a2e2092208a2b (patch) | |
tree | 16c8c679c890dc7e0f18ec63a7a3f6c39cbec4cd /tests/dpdk | |
parent | 8f5f344d59674ea4c158e8ff1528716276f5b071 (diff) |
CSIT-1193 De-duplicate bootstrap scripts into one
- DPDK and VPP bootstrap merged into one (ligato will follow).
- Added more error detections
- Added topo-cleanup.py to cleanup TB before and after test.
- Remove installation of VPP
Change-Id: I7a86117eb03cbe4ee8fde47baeed58bc86c0dfb2
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'tests/dpdk')
-rwxr-xr-x | tests/dpdk/dpdk_scripts/install_dpdk.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dpdk/dpdk_scripts/install_dpdk.sh b/tests/dpdk/dpdk_scripts/install_dpdk.sh index 4fcbf080d9..ec23aa06b1 100755 --- a/tests/dpdk/dpdk_scripts/install_dpdk.sh +++ b/tests/dpdk/dpdk_scripts/install_dpdk.sh @@ -21,7 +21,7 @@ PWDDIR=$(pwd) cd ${ROOTDIR} mkdir ${DPDK_DIR} -tar -xvf dpdk*.tar.xz --strip=1 --directory dpdk || \ +tar -xvf download_dir/dpdk*.tar.xz --strip=1 --directory dpdk || \ { echo "Failed to extract DPDK"; exit 1; } # Compile the DPDK |