2018-11-02 00:00:24 +00:00
|
|
|
#!/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"
|
2019-01-09 16:50:40 +00:00
|
|
|
suite "$testdir/integrity/bdevperf-iotypes.sh"
|
2019-01-07 21:17:47 +00:00
|
|
|
suite "$testdir/management/create-destruct.sh"
|
2019-02-18 18:32:26 +00:00
|
|
|
suite "$testdir/management/multicore.sh"
|
2018-11-02 00:00:24 +00:00
|
|
|
|
|
|
|
timing_exit ocf
|
2019-05-07 12:13:06 +00:00
|
|
|
report_test_completion "ocf"
|