e9c4aaf260
Those test cases were basically testing hotremove, so that's how we're going to name them now. Change-Id: Ib79ab7e50e3022df981f7092436b0a0991d5c9b9 Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Signed-off-by: Pawel Kaminski <pawelx.kaminski@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/462189 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>
16 lines
351 B
Bash
Executable File
16 lines
351 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
|
|
timing_exit basic
|
|
|
|
timing_exit lvol
|