xref: /spdk/test/lvol/lvol.sh (revision b3bec07939ebe2ea2e0c43931705d32aa9e06719)
1#!/usr/bin/env bash
2#  SPDX-License-Identifier: BSD-3-Clause
3#  Copyright (C) 2019 Intel Corporation
4#  All rights reserved.
5#  Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
6#
7testdir=$(readlink -f $(dirname $0))
8rootdir=$(readlink -f $testdir/../..)
9source $rootdir/test/common/autotest_common.sh
10
11timing_enter lvol
12
13timing_enter basic
14run_test "lvol_basic" $rootdir/test/lvol/basic.sh
15run_test "lvol_resize" $rootdir/test/lvol/resize.sh
16run_test "lvol_hotremove" $rootdir/test/lvol/hotremove.sh
17run_test "lvol_tasting" $rootdir/test/lvol/tasting.sh
18run_test "lvol_snapshot_clone" $rootdir/test/lvol/snapshot_clone.sh
19run_test "lvol_rename" $rootdir/test/lvol/rename.sh
20run_test "lvol_provisioning" $rootdir/test/lvol/thin_provisioning.sh
21run_test "lvol_esnap" $rootdir/test/lvol/esnap/esnap
22run_test "lvol_external_snapshot" $rootdir/test/lvol/external_snapshot.sh
23timing_exit basic
24
25timing_exit lvol
26