937e10b1f6
This way we can track which machine runs OCF tests. Change-Id: I51ad8f467965ae7051caac06b834a9db9f0b1a8d Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/453542 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
24 lines
466 B
Bash
Executable File
24 lines
466 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"
|
|
suite "$testdir/management/create-destruct.sh"
|
|
suite "$testdir/management/multicore.sh"
|
|
|
|
timing_exit ocf
|
|
report_test_completion "ocf"
|