You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.test case src/autoval_ssd/tests/nvme_cli/nvme_cli.py
2.function[_validate_capacity] check namespace_management capacity used bit 4, should use bit 3
oacs = NVMeUtils.get_id_ctrl(self.host, drive.block_name)["oacs"]
support_namespace_management = oacs & 0x8
AutovalUtils.validate_condition(
support_namespace_management and 0x8,
3.NVMe SPEc ExpressTM Revision 1.4
Bit 4 if set to ‘1’, then the controller supports the Device Self-test command. If cleared
to ‘0’, then the controller does not support the Device Self-test command.
Bit 3 if set to ‘1’, then the controller supports the Namespace Management capability
(refer to section 8.12). If cleared to ‘0’, then the controller does not support the
Namespace Management capability.
The text was updated successfully, but these errors were encountered:
kwzhu123
changed the title
test case src/autoval_ssd/tests/nvme_cli/nvme_cli.py _validate_capacity(function) check namespace_management capacity have issue
test case src/autoval_ssd/tests/nvme_cli/nvme_cli.py _validate_capacity(function) check support_dev_self_test_management have issue
Jun 24, 2024
1.test case src/autoval_ssd/tests/nvme_cli/nvme_cli.py
2.function[_validate_capacity] check namespace_management capacity used bit 4, should use bit 3
oacs = NVMeUtils.get_id_ctrl(self.host, drive.block_name)["oacs"]
support_namespace_management = oacs & 0x8
AutovalUtils.validate_condition(
support_namespace_management and 0x8,
3.NVMe SPEc ExpressTM Revision 1.4
Bit 4 if set to ‘1’, then the controller supports the Device Self-test command. If cleared
to ‘0’, then the controller does not support the Device Self-test command.
Bit 3 if set to ‘1’, then the controller supports the Namespace Management capability
(refer to section 8.12). If cleared to ‘0’, then the controller does not support the
Namespace Management capability.
The text was updated successfully, but these errors were encountered: