Add test for flush and unmap IO types We test correctness with bdevperf -w by watching if any errors produced during its run Change-Id: I07dcda5b976aa0d23e75ef2a312dd9780c6c39f3 Signed-off-by: Vitaliy Mysak <vitaliy.mysak@intel.com> Reviewed-on: https://review.gerrithub.io/c/439647 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
21 lines
349 B
Bash
Executable File
21 lines
349 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 "$@"
|
|
run_test suite "$@"
|
|
timing_exit "$@"
|
|
}
|
|
|
|
timing_enter ocf
|
|
|
|
suite "$testdir/integrity/fio-mallocs.sh"
|
|
suite "$testdir/integrity/bdevperf-iotypes.sh"
|
|
|
|
timing_exit ocf
|