5bdaec6322
This method allows to dynamically switch cache mode on OCF bdev Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com> Change-Id: I933273e35bb9f29528657f8f6800c6b52dde32e5 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6547 Community-CI: Broadcom CI Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
16 lines
676 B
Bash
Executable File
16 lines
676 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"
|
|
run_test "ocf_persistent_metadata" "$testdir/management/persistent-metadata.sh"
|
|
run_test "ocf_remove" "$testdir/management/remove.sh"
|
|
run_test "ocf_configuration_change" "$testdir/management/configuration-change.sh"
|