Correct shellcheck rule SC2068: Double quote array expansions to avoid re-splitting elements. Signed-off-by: Maciej Wawryk <maciejx.wawryk@intel.com> Change-Id: Iefc4f0104249f4d437a66c3d9c7a195f4f6f6da3 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/475690 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
27 lines
613 B
Bash
Executable File
27 lines
613 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/integrity/stats.sh"
|
|
suite "$testdir/management/create-destruct.sh"
|
|
suite "$testdir/management/multicore.sh"
|
|
suite "$testdir/management/persistent-metadata.sh"
|
|
suite "$testdir/management/remove.sh"
|
|
|
|
timing_exit ocf
|
|
report_test_completion "ocf"
|