~psusi/ubuntu/utopic/udisks2/fix-standby

« back to all changes in this revision

Viewing changes to src/tests/integration-test

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Martin Pitt, Colin Watson, Andreas Henriksson
  • Date: 2014-01-14 10:04:52 UTC
  • mfrom: (14.2.3 sid)
  • Revision ID: package-import@ubuntu.com-20140114100452-hpj6k2wt5gtml2xb
Tags: 2.1.2-1
[ Martin Pitt ]
* New upstream release:
  - Add exfat support (Closes: #720695)
  - Fix crash when waiting for loop device (LP: #1128275)
  - Use dosfstools instead of mtools
  - Add polkit authorization variables for removable media
  - Hide more rescue partitions
* Drop dosfslabel.patch, fixed upstream.
* Add Recommends: gdisk, as we need it for manipulating GPT partition tables
  through sgdisk. (LP: #1080745)
* Bump Standards-Version to 3.9.5. No changes necessary.

[ Colin Watson ]
* Use dh-autoreconf to update libtool macros for new ports.
  (Closes: #732287)

[ Andreas Henriksson ]
* Add parted dependency. (Closes: #720491)

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 
70
70
# Those file systems are known to have a broken handling of permissions, in
71
71
# particular the executable bit
72
 
BROKEN_PERMISSIONS_FS = ['ntfs']
 
72
BROKEN_PERMISSIONS_FS = ['ntfs', 'exfat']
73
73
 
74
74
# Some D-BUS API methods cause properties to not be up to date yet when a
75
75
# method call finishes, thus we do an udevadm settle as a workaround. Those
303
303
                      'ntfs': 'mkntfs',
304
304
                    }
305
305
        label_opt = { 'vfat': '-n', 
 
306
                      'exfat': '-n',
306
307
                      'reiserfs': '-l',
307
308
                    }
308
309
        extra_opt = { 'vfat': [ '-I', '-F', '32'],
654
655
        '''fs: FAT'''
655
656
        self._do_fs_check('vfat')
656
657
 
 
658
    def test_exfat(self):
 
659
        '''fs: exFAT'''
 
660
        self._do_fs_check('exfat')
 
661
 
657
662
    def test_reiserfs(self):
658
663
        '''fs: reiserfs'''
659
664
        self._do_fs_check('reiserfs')