summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Lechner <[email protected]>2026-03-26 15:39:52 -0500
committerTom Rini <[email protected]>2026-04-08 11:07:00 -0600
commit8191d234571e39a49490ab3301cea0106a4ebeb3 (patch)
treeefd7e66220ce16fd66998dec7fa897e123bcb714 /test
parenta383c9689282269bb9687ec6c115de094c27fa67 (diff)
cmd/scsi: drop scsi reset command
Since commit b630f8b3aefc ("scsi: Forceably finish migration to DM_SCSI") the "scsi reset" command has no possibility of actually resetting any SCSI controller. Drop the command to avoid confusion that the command is actually resetting the SCSI controller. Signed-off-by: David Lechner <[email protected]>
Diffstat (limited to 'test')
-rw-r--r--test/py/tests/test_scsi.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/py/tests/test_scsi.py b/test/py/tests/test_scsi.py
index 2a35e47e558..4390ff65845 100644
--- a/test/py/tests/test_scsi.py
+++ b/test/py/tests/test_scsi.py
@@ -39,16 +39,6 @@ def scsi_setup(ubman):
return dev_num, dev_type, dev_size
@pytest.mark.buildconfigspec('cmd_scsi')
-def test_scsi_reset(ubman):
- dev_num, dev_type, dev_size = scsi_setup(ubman)
- output = ubman.run_command('scsi reset')
- assert f'Device {dev_num}:' in output
- assert f'Type: {dev_type}' in output
- assert f'Capacity: {dev_size}' in output
- output = ubman.run_command('echo $?')
- assert output.endswith('0')
-
[email protected]('cmd_scsi')
def test_scsi_info(ubman):
dev_num, dev_type, dev_size = scsi_setup(ubman)
output = ubman.run_command('scsi info')