Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: I3392956a841d7c4c2e8748940b7e1d7838bdb5d2 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/454359 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
24 lines
486 B
Bash
Executable File
24 lines
486 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-mallocs.sh"
|
|
suite "$testdir/integrity/bdevperf-iotypes.sh"
|
|
suite "$testdir/management/create-destruct.sh"
|
|
suite "$testdir/management/multicore.sh"
|
|
|
|
timing_exit ocf
|
|
report_test_completion "ocf"
|