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 09:15:05 -07:00
|
|
|
timing_enter $(basename $@)
|
2018-11-02 00:00:24 +00:00
|
|
|
run_test suite "$@"
|
2019-05-13 09:15:05 -07: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-11-13 09:20:03 +01:00
|
|
|
suite "$testdir/integrity/stats.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-08-22 17:55:46 +02:00
|
|
|
suite "$testdir/management/persistent-metadata.sh"
|
2019-10-04 17:43:58 +02:00
|
|
|
suite "$testdir/management/remove.sh"
|
2018-11-02 00:00:24 +00:00
|
|
|
|
|
|
|
timing_exit ocf
|
2019-05-07 14:13:06 +02:00
|
|
|
report_test_completion "ocf"
|