Change-Id: I27e58b05c3c8e55b06ea64f1640c2a5702449b26 Signed-off-by: Pawel Kaminski <pawelx.kaminski@intel.com> Signed-off-by: Michal Berger <michalx.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/684 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
18 lines
455 B
Bash
Executable File
18 lines
455 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
timing_enter lvol
|
|
|
|
timing_enter basic
|
|
run_test "lvol_basic" test/lvol/basic.sh
|
|
run_test "lvol_resize" test/lvol/resize.sh
|
|
run_test "lvol_hotremove" test/lvol/hotremove.sh
|
|
run_test "lvol_tasting" test/lvol/tasting.sh
|
|
run_test "lvol_snapshot_clone" test/lvol/snapshot_clone.sh
|
|
timing_exit basic
|
|
|
|
timing_exit lvol
|