In particular, non-volatile cache setup and EXTENDED fio tests: these haven't been supported nor tested by the CI, thus there's no value in keeping these routines anymore. fio tests are limited to what was previously called as a "basic" suite and hooked to standard SPDK_TEST_FTL flow. Code which is not used by the remaining tests is removed as well. Signed-off-by: Michal Berger <michalx.berger@intel.com> Change-Id: I865da1ea4d8743322d4c303908c598efe6ecd40b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/8294 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
35 lines
1.2 KiB
Bash
Executable File
35 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $testdir/common.sh
|
|
|
|
function at_ftl_exit() {
|
|
# restore original driver
|
|
PCI_ALLOWED="$device" PCI_BLOCKED="" DRIVER_OVERRIDE="$ocssd_original_dirver" $rootdir/scripts/setup.sh
|
|
}
|
|
|
|
read -r device _ <<< "$OCSSD_PCI_DEVICES"
|
|
|
|
if [[ -z "$device" ]]; then
|
|
echo "OCSSD device list is empty."
|
|
echo "This test require that OCSSD_PCI_DEVICES environment variable to be set"
|
|
echo "and point to OCSSD devices PCI BDF. You can specify multiple space"
|
|
echo "separated BDFs in this case first one will be used."
|
|
exit 1
|
|
fi
|
|
|
|
ocssd_original_dirver="$(basename $(readlink /sys/bus/pci/devices/$device/driver))"
|
|
|
|
trap 'at_ftl_exit' SIGINT SIGTERM EXIT
|
|
|
|
# OCSSD is blocked so bind it to vfio/uio driver before testing
|
|
PCI_ALLOWED="$device" PCI_BLOCKED="" DRIVER_OVERRIDE="" $rootdir/scripts/setup.sh
|
|
|
|
run_test "ftl_bdevperf" $testdir/bdevperf.sh $device
|
|
run_test "ftl_bdevperf_append" $testdir/bdevperf.sh $device --use_append
|
|
run_test "ftl_restore" $testdir/restore.sh $device
|
|
run_test "ftl_json" $testdir/json.sh $device
|
|
run_test "ftl_fio" "$testdir/fio.sh" "$device"
|