related #1498 Updating DPDK 20.05 exposes issue listed in #1498. Most likely the device removal path has to be re-worked to accomodate multiple devices on the same cache instance. Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: I28f71ef2c2e1d9c2d19202cd33a932182bfb122c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/3521 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
16 lines
626 B
Bash
Executable File
16 lines
626 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
run_test "ocf_fio_modes" "$testdir/integrity/fio-modes.sh"
|
|
run_test "ocf_bdevperf_iotypes" "$testdir/integrity/bdevperf-iotypes.sh"
|
|
run_test "ocf_stats" "$testdir/integrity/stats.sh"
|
|
run_test "ocf_create_destruct" "$testdir/management/create-destruct.sh"
|
|
run_test "ocf_multicore" "$testdir/management/multicore.sh"
|
|
# Disabled due to issue #1498
|
|
# run_test "ocf_persistent_metadata" "$testdir/management/persistent-metadata.sh"
|
|
run_test "ocf_remove" "$testdir/management/remove.sh"
|