scripts: exit from tests when no qat card
Also moved qat_setup.sh to functional tests fixes: GH#2203 Signed-off-by: Maciej Wawryk <maciejx.wawryk@intel.com> Change-Id: Iab69b192a29013a69f4cc4a251a34dcc6fbf6b7d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9952 Reviewed-by: Michal Berger <michalx.berger@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
This commit is contained in:
parent
88f5864005
commit
1aa72efad3
15
autotest.sh
15
autotest.sh
@ -148,14 +148,6 @@ timing_enter afterboot
|
||||
./scripts/setup.sh
|
||||
timing_exit afterboot
|
||||
|
||||
if [[ $SPDK_TEST_CRYPTO -eq 1 || $SPDK_TEST_REDUCE -eq 1 ]]; then
|
||||
if [[ $SPDK_TEST_USE_IGB_UIO -eq 1 ]]; then
|
||||
./scripts/qat_setup.sh igb_uio
|
||||
else
|
||||
./scripts/qat_setup.sh
|
||||
fi
|
||||
fi
|
||||
|
||||
# Revert existing OPAL to factory settings that may have been left from earlier failed tests.
|
||||
# This ensures we won't hit any unexpected failures due to NVMe SSDs being locked.
|
||||
opal_revert_cleanup
|
||||
@ -170,6 +162,13 @@ if [ $SPDK_TEST_UNITTEST -eq 1 ]; then
|
||||
fi
|
||||
|
||||
if [ $SPDK_RUN_FUNCTIONAL_TEST -eq 1 ]; then
|
||||
if [[ $SPDK_TEST_CRYPTO -eq 1 || $SPDK_TEST_REDUCE -eq 1 ]]; then
|
||||
if [[ $SPDK_TEST_USE_IGB_UIO -eq 1 ]]; then
|
||||
./scripts/qat_setup.sh igb_uio
|
||||
else
|
||||
./scripts/qat_setup.sh
|
||||
fi
|
||||
fi
|
||||
timing_enter lib
|
||||
|
||||
run_test "rpc" test/rpc/rpc.sh
|
||||
|
@ -61,7 +61,7 @@ num_vfs=16
|
||||
qat_pci_bdfs=($(lspci -Dd:37c8 | awk '{print $1}'))
|
||||
if [ ${#qat_pci_bdfs[@]} -eq 0 ]; then
|
||||
echo "No QAT devices found. Exiting"
|
||||
exit 0
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user