fa540f18d8
In bdevperf-iotypes we used to call "bdev_ocf_get_stats" RPC which is not a part of IO types testing. As a result, we started to get failures caused by that rpc call which were not related to ocf bdev IO handling (issue #1025). This patch isolates the RPC call to separate test. Change-Id: I3a72ef52452868d49a6ec1ae4d3f9643496c2a28 Signed-off-by: Vitaliy Mysak <vitaliy.mysak@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/474052 Community-CI: Broadcom SPDK FC-NVMe 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: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
27 lines
609 B
Bash
Executable File
27 lines
609 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
function suite()
|
|
{
|
|
timing_enter $(basename $@)
|
|
run_test suite "$@"
|
|
timing_exit $(basename $@)
|
|
}
|
|
|
|
timing_enter ocf
|
|
|
|
suite "$testdir/integrity/fio-modes.sh"
|
|
suite "$testdir/integrity/bdevperf-iotypes.sh"
|
|
suite "$testdir/integrity/stats.sh"
|
|
suite "$testdir/management/create-destruct.sh"
|
|
suite "$testdir/management/multicore.sh"
|
|
suite "$testdir/management/persistent-metadata.sh"
|
|
suite "$testdir/management/remove.sh"
|
|
|
|
timing_exit ocf
|
|
report_test_completion "ocf"
|