From 115e975910b7eb5a9197732eeb051c6fa4a7e130 Mon Sep 17 00:00:00 2001 From: Hailiang Wang Date: Wed, 24 Apr 2019 15:48:45 +0800 Subject: [PATCH] test/lvol: Add a case in usage and fix a typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Case 602 was run but not listed in usage, so add it. Change-Id: I03d95d4452e1fec07ca90eee59a97bb1ef91799b Signed-off-by: Hailiang Wang Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/451840 Tested-by: SPDK CI Jenkins Reviewed-by: Paweł Niedźwiecki Reviewed-by: Ben Walker Reviewed-by: Changpeng Liu Reviewed-by: Shuhei Matsumoto Reviewed-by: Jim Harris --- test/lvol/lvol.sh | 3 ++- test/lvol/test_cases.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/lvol/lvol.sh b/test/lvol/lvol.sh index 1e6dc8142..baf463ebe 100755 --- a/test/lvol/lvol.sh +++ b/test/lvol/lvol.sh @@ -51,9 +51,10 @@ function usage() { 553: 'unregister_lvol_bdev', 600: 'construct_lvol_store_with_cluster_size_max', 601: 'construct_lvol_store_with_cluster_size_min', + 602: 'construct_lvol_store_with_all_clear_methods', 650: 'thin_provisioning_check_space', 651: 'thin_provisioning_read_empty_bdev', - 652: 'thin_provisionind_data_integrity_test', + 652: 'thin_provisioning_data_integrity_test', 653: 'thin_provisioning_resize', 654: 'thin_overprovisioning', 655: 'thin_provisioning_filling_disks_less_than_lvs_size', diff --git a/test/lvol/test_cases.py b/test/lvol/test_cases.py index 2abbdde72..1fa4877a9 100644 --- a/test/lvol/test_cases.py +++ b/test/lvol/test_cases.py @@ -152,7 +152,7 @@ def case_message(func): # Provisioning 650: 'thin_provisioning_check_space', 651: 'thin_provisioning_read_empty_bdev', - 652: 'thin_provisionind_data_integrity_test', + 652: 'thin_provisioning_data_integrity_test', 653: 'thin_provisioning_resize', 654: 'thin_overprovisioning', 655: 'thin_provisioning_filling_disks_less_than_lvs_size',