diff options
| -rwxr-xr-x | bin/query_bto_version.py | 5 | ||||
| -rw-r--r-- | debian/changelog | 18 | ||||
| -rw-r--r-- | units/stella-graphics.pxu | 1 |
3 files changed, 20 insertions, 4 deletions
diff --git a/bin/query_bto_version.py b/bin/query_bto_version.py index aac9d77..582ff12 100755 --- a/bin/query_bto_version.py +++ b/bin/query_bto_version.py @@ -51,12 +51,11 @@ def get_recovery_partition(bus = None): for k, v in ud.GetManagedObjects().iteritems(): drive_info = v.get('org.freedesktop.UDisks2.Block', {}) - if 'sd' not in k: - continue + if ('sd' not in k) and ('nvme' not in k): + continue label = bytearray(drive_info.get('IdLabel'), 'utf_8').decode('utf_8') fs = bytearray(drive_info.get('IdType'), 'utf_8').decode('utf_8') - if ((('install' in label or 'OS' in label) and 'vfat' in fs) or ('RECOVERY' in label and 'ntfs' in fs)): # strip null byte from the end of C-string diff --git a/debian/changelog b/debian/changelog index 372c418..090d5d7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +plainbox-provider-oem (0.58) xenial; urgency=medium + + * All: Add after-suspend-monitor-integrated-gpu-cert-full part to oem test plans + * Somerville: Fix typo in docking USB test + * Somerville: Remove hibernate from test plan + * Somerville: Update BIOS Regression Whitelist + * Somerville: Update whitelist for TPM + * Stella: Base on oem-generic-docking test plan, add stella specific tests + * Stella: Fix stella-regression for real nested-part approach + * Stella: Modify Graphic test case + * Stella: Modify stella-regression to nested part style + * Stella: Modify stella-wireless.pxu into a nested test plan style + * Sutton: Add wireless test plan + * Sutton: Add a new test plan sutton-regression + * Sutton: Add docking test plan + + -- Pierre Equoy <pierre.equoy@canonical.com> Thu, 20 Sep 2018 16:28:32 +0800 + plainbox-provider-oem (0.57) xenial; urgency=medium * Add Somerville regression test plan diff --git a/units/stella-graphics.pxu b/units/stella-graphics.pxu index bc54786..0ed9e76 100644 --- a/units/stella-graphics.pxu +++ b/units/stella-graphics.pxu @@ -3,7 +3,6 @@ _name: Stella Graphics _description: Stella Graphic unit: test plan include: - mandatory_include: com.canonical.certification::miscellanea/tester-info nested_part: |
