test/common: Remove unused nvme_cli_build function

Signed-off-by: Maciej Wawryk <maciejx.wawryk@intel.com>
Change-Id: I5226c58f9993e0d1d8665ac75930ea952e474f05
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/5542
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
This commit is contained in:
Maciej Wawryk 2020-12-11 13:06:20 +01:00 committed by Jim Harris
parent 24ad09ba2f
commit b36f099937

View File

@ -846,41 +846,6 @@ function rbd_cleanup() {
fi
}
function nvme_cli_build() {
if [[ -z "${DEPENDENCY_DIR}" ]]; then
echo DEPENDENCY_DIR not defined!
exit 1
fi
spdk_nvme_cli="${DEPENDENCY_DIR}/nvme-cli"
if [[ ! -d $spdk_nvme_cli ]]; then
echo "nvme-cli repository not found at $spdk_nvme_cli; skipping tests."
exit 1
fi
if ! grep -q "DEF_VER=v1.6" $spdk_nvme_cli/NVME-VERSION-GEN; then
echo "SPDK supports only \"spdk/nvme-cli\" project on \"spdk-1.6\" branch."
exit 1
fi
# Build against the version of SPDK under test
pushd $spdk_nvme_cli
# Remove and recreate git index in case it became corrupted
if ! git clean -dfx; then
rm -f .git/index
git clean -dfx
git reset --hard
fi
rm -f "$spdk_nvme_cli/spdk"
ln -sf "$rootdir" "$spdk_nvme_cli/spdk"
make -j$(nproc) LDFLAGS="$(make -s -C $spdk_nvme_cli/spdk ldflags)"
popd
}
function _start_stub() {
# Disable ASLR for multi-process testing. SPDK does support using DPDK multi-process,
# but ASLR can still be unreliable in some cases.