20b7b660c9
After the large effort of moving lvol tests from python to bash, the original lvol.sh was removed. Only lvol2.sh remained. Just rename the script to its original name. Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: I5c0a239b01c111f0b11f554caaebfec372877c6d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4561 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
20 lines
558 B
Bash
Executable File
20 lines
558 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
|
|
run_test "lvol_rename" test/lvol/rename.sh
|
|
run_test "lvol_provisioning" test/lvol/thin_provisioning.sh
|
|
timing_exit basic
|
|
|
|
timing_exit lvol
|