test/lvol: Remove test case 400 as not needed

Change-Id: I7521417b7c38848937dab14c890b8ff9019008aa
Signed-off-by: Pawel Kaminski <pawelx.kaminski@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/446112
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Pawel Kaminski 2019-02-25 08:12:33 -05:00 committed by Jim Harris
parent 453f9b14ed
commit c4586a75cb

View File

@ -136,8 +136,6 @@ def case_message(func):
# destroy_lvol_store - negative tests
300: 'destroy_lvol_store_nonexistent_lvs_uuid',
301: 'delete_lvol_store_underlying_bdev',
# nested construct_logical_volume - positive tests
400: 'nested_construct_logical_volume_positive',
# construct_lvol_store - negative tests
450: 'construct_lvs_nonexistent_bdev',
451: 'construct_lvs_on_bdev_twice',
@ -1039,36 +1037,6 @@ class TestCases(object):
# - no other operation fails
return fail_count
def test_case400(self):
print("Test of this feature not yet implemented.")
# Name: nested_construct_logical_volume_positive
# Positive test for constructing a nested new lvol store.
# Call construct_lvol_store with correct base bdev name.
# Steps:
# - create a malloc bdev
# - construct_lvol_store on created malloc bdev
# - check correct uuid values in response get_lvol_stores command
# - construct_lvol_bdev on correct lvs_uuid and size is
# equal to size malloc bdev
# - construct first nested lvol store on created lvol_bdev
# - check correct uuid values in response get_lvol_stores command
# - construct first nested lvol bdev on correct lvs_uuid and size
# - construct second nested lvol store on created first nested lvol bdev
# - check correct uuid values in response get_lvol_stores command
# - construct second nested lvol bdev on correct first nested lvs uuid and size
# - delete nested lvol bdev and lvol store
# - delete base lvol bdev and lvol store
# - delete malloc bdev
# Expected result:
# - calls successful, return code = 0
# - get_lvol_stores: backend used for construct_lvol_store has UUID
# field set with the same UUID as returned from RPC call
# backend used for construct_lvol_bdev has UUID
# field set with the same UUID as returned from RPC call
# - no other operation fails
return 0
# negative tests
@case_message
def test_case450(self):