e83d5c4a2d
It's randomly times out on waitforlisten. See #815 Change-Id: Ib9a75d0a96756810cb25f2a1ddf72bc800ea4b5c Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/457483 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
26 lines
600 B
Bash
Executable File
26 lines
600 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 $(basename $@)
|
|
run_test suite "$@"
|
|
timing_exit $(basename $@)
|
|
}
|
|
|
|
timing_enter ocf
|
|
|
|
suite "$testdir/integrity/fio-modes.sh"
|
|
suite "$testdir/integrity/bdevperf-iotypes.sh"
|
|
suite "$testdir/management/create-destruct.sh"
|
|
suite "$testdir/management/multicore.sh"
|
|
# disabled due to intermittent failures. See github isssue #815
|
|
#suite "$testdir/management/persistent-metadata.sh"
|
|
|
|
timing_exit ocf
|
|
report_test_completion "ocf"
|