diff options
author | Sylvain Pineau <sylvain.pineau@canonical.com> | 2019-05-27 14:52:02 +0200 |
---|---|---|
committer | Sylvain Pineau <sylvain.pineau@canonical.com> | 2019-05-27 14:52:02 +0200 |
commit | a195e859b7641f5ca2f220d270975127f448850d (patch) | |
tree | 5c0bb444d8c62f7434ea54c6128ddbcb15255657 /bin | |
parent | 6167a9da66f1c85399a96ac529c7d7b1e99227f8 (diff) |
bin:removable_storage_test: Ensure it is a media card reader only if this was explicitly requested
Fixes: lp:1811645
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/removable_storage_test | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/bin/removable_storage_test b/bin/removable_storage_test index a7abdfed..249911a1 100755 --- a/bin/removable_storage_test +++ b/bin/removable_storage_test @@ -391,12 +391,11 @@ class DiskTest(): interconnect_speed * 10 ** 6) else: self.rem_disks_speed[dev_file] = None - # We need to skip-non memory cards if we look for memory cards and - # vice-versa so let's inspect the drive and use heuristics to - # detect memory cards (a memory card reader actually) now. - if self.memorycard != is_memory_card(drive_props['Vendor'], - drive_props['Model'], - drive_props['Media']): + # Ensure it is a media card reader if this was explicitly requested + drive_is_reader = is_memory_card( + drive_props['Vendor'], drive_props['Model'], + drive_props['Media']) + if self.memorycard and not drive_is_reader: continue # The if/else test below simply distributes the mount_point to the # appropriate variable, to keep the API requirements. It is |