Although they are all correct. I suggest to unify, so it looks more normalized. Change-Id: I61ee92b2ac9f2260851e0d7e28ebaea8783423f6 Signed-off-by: Hailiang Wang <hailiangx.e.wang@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15172 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Michal Berger <michal.berger@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
23 lines
727 B
Bash
Executable File
23 lines
727 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2019 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
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" $rootdir/test/lvol/basic.sh
|
|
run_test "lvol_resize" $rootdir/test/lvol/resize.sh
|
|
run_test "lvol_hotremove" $rootdir/test/lvol/hotremove.sh
|
|
run_test "lvol_tasting" $rootdir/test/lvol/tasting.sh
|
|
run_test "lvol_snapshot_clone" $rootdir/test/lvol/snapshot_clone.sh
|
|
run_test "lvol_rename" $rootdir/test/lvol/rename.sh
|
|
run_test "lvol_provisioning" $rootdir/test/lvol/thin_provisioning.sh
|
|
timing_exit basic
|
|
|
|
timing_exit lvol
|