Pass Disk Attribute test for devices lacking SMART
This commit is contained in:
parent
a573a7e1c3
commit
fef8323282
1 changed files with 2 additions and 0 deletions
|
|
@ -911,6 +911,8 @@ def disk_self_test(state, test_objects):
|
|||
test_obj.failed = True
|
||||
result = 'TimedOut'
|
||||
except hw_obj.SMARTNotSupportedError:
|
||||
# Pass test since it doesn't apply
|
||||
test_obj.passed = True
|
||||
result = 'N/A'
|
||||
|
||||
# Set status
|
||||
|
|
|
|||
Loading…
Reference in a new issue