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-12-04 19:39:14 +00:00
|
|
|
run_test suite "ocf_$(basename "$@")" "$@"
|
2018-11-02 00:00:24 +00:00
|
|
|
}
|
|
|
|
|
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 08:20:03 +00: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 15:55:46 +00:00
|
|
|
suite "$testdir/management/persistent-metadata.sh"
|
2019-10-04 15:43:58 +00:00
|
|
|
suite "$testdir/management/remove.sh"
|
2018-11-02 00:00:24 +00:00
|
|
|
|
2019-05-07 12:13:06 +00:00
|
|
|
report_test_completion "ocf"
|