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()
|
|
|
|
{
|
2019-05-13 16:15:05 +00:00
|
|
|
timing_enter $(basename $@)
|
2018-11-02 00:00:24 +00:00
|
|
|
run_test suite "$@"
|
2019-05-13 16:15:05 +00:00
|
|
|
timing_exit $(basename $@)
|
2018-11-02 00:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
timing_enter ocf
|
|
|
|
|
2019-04-12 18:28:13 +00:00
|
|
|
suite "$testdir/integrity/fio-modes.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"
|
2019-06-10 12:55:50 +00:00
|
|
|
# disabled due to intermittent failures. See github isssue #815
|
|
|
|
#suite "$testdir/management/persistent-metadata.sh"
|
2018-11-02 00:00:24 +00:00
|
|
|
|
|
|
|
timing_exit ocf
|
2019-05-07 12:13:06 +00:00
|
|
|
report_test_completion "ocf"
|