test/lvol: Remove test case 350 as not needed

Change-Id: Ib8e00997d3c681b80a25b69cdc245bb556ce1f07
Signed-off-by: Pawel Kaminski <pawelx.kaminski@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/446106
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 07:26:16 -05:00 committed by Jim Harris
parent fa5b07ffef
commit 453f9b14ed

View File

@ -136,8 +136,6 @@ def case_message(func):
# destroy_lvol_store - negative tests # destroy_lvol_store - negative tests
300: 'destroy_lvol_store_nonexistent_lvs_uuid', 300: 'destroy_lvol_store_nonexistent_lvs_uuid',
301: 'delete_lvol_store_underlying_bdev', 301: 'delete_lvol_store_underlying_bdev',
# nested destroy_lvol_bdev - negative tests
350: 'nested_destroy_logical_volume_negative',
# nested construct_logical_volume - positive tests # nested construct_logical_volume - positive tests
400: 'nested_construct_logical_volume_positive', 400: 'nested_construct_logical_volume_positive',
# construct_lvol_store - negative tests # construct_lvol_store - negative tests
@ -1041,29 +1039,6 @@ class TestCases(object):
# - no other operation fails # - no other operation fails
return fail_count return fail_count
def test_case350(self):
print("Test of this feature not yet implemented.")
# Name: nested_destroy_logical_volume_negative
# Negative test for destroying a nested first lvol store.
# all destroy_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
# - check size of the lvol bdev by command RPC : get_bdevs
# - destroy first lvol_store
# - delete malloc bdev
# Expected result:
# - Error code: ENODEV ("the device is busy") response printed to stdout
# - no other operation fails
return 0
def test_case400(self): def test_case400(self):
print("Test of this feature not yet implemented.") print("Test of this feature not yet implemented.")
# Name: nested_construct_logical_volume_positive # Name: nested_construct_logical_volume_positive