storaged-project / blivet

A python module for configuration of block devices
GNU Lesser General Public License v2.1
100 stars 85 forks source link

Tests fail when run as non-root user #870

Closed mans0954 closed 1 year ago

mans0954 commented 4 years ago

In the tests read me it says:

Tests descending from :class:`~.imagebackedtestcase.ImageBackedTestCase` or :class:`~.loopbackedtestcase.LoopBackedTestCase` require root access on the system and will be skipped if you're running as non-root user. 

When I run make test I see several permissions errors like the following:

======================================================================
ERROR: test_device_factory (devicefactory_test.LVMFactoryTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/gi/overrides/BlockDev.py", line 967, in wrapped
    ret = orig_obj(*args, **kwargs)
  File "/usr/lib/python3/dist-packages/gi/overrides/BlockDev.py", line 600, in lvm_lvs
    return _lvm_lvs(vg_name)
gi.repository.GLib.GError: g-bd-utils-exec-error-quark: Process reported exit code 5:   WARNING: Running as a non-root user. Functionality may be unavailable.
  /run/lock/lvm/P_global:aux: open failed: Permission denied
 (0)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/devicefactory.py", line 909, in configure
    self._configure()
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/devicefactory.py", line 1511, in _configure
    super(LVMFactory, self)._configure()
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/devicefactory.py", line 951, in _configure
    self._create_container()
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/devicefactory.py", line 617, in _create_container
    self.container = self._get_new_container(name=self.container_name,
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/devicefactory.py", line 1427, in _get_new_container
    return self.storage.new_vg(*args, **kwargs)
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/threads.py", line 53, in run_with_lock
    return m(*args, **kwargs)
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/blivet.py", line 556, in new_vg
    name = self.suggest_container_name()
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/threads.py", line 53, in run_with_lock
    return m(*args, **kwargs)
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/blivet.py", line 929, in suggest_container_name
    names = self.names
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/threads.py", line 53, in run_with_lock
    return m(*args, **kwargs)
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/blivet.py", line 453, in names
    return self.devicetree.names
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/threads.py", line 53, in run_with_lock
    return m(*args, **kwargs)
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/devicetree.py", line 148, in names
    lv_info = list(lvs_info.cache.keys())
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/static_data/lvm_info.py", line 44, in cache
    lvs = blockdev.lvm.lvs()
  File "/usr/lib/python3/dist-packages/gi/overrides/BlockDev.py", line 993, in wrapped
    raise transform[1](msg)
gi.overrides.BlockDev.LVMError: Process reported exit code 5:   WARNING: Running as a non-root user. Functionality may be unavailable.
  /run/lock/lvm/P_global:aux: open failed: Permission denied

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/mans0954/Downloads/blivet-3.2-devel/tests/devicefactory_test.py", line 348, in test_device_factory
    super(LVMFactoryTestCase, self).test_device_factory()
  File "/home/mans0954/Downloads/blivet-3.2-devel/tests/devicefactory_test.py", line 116, in test_device_factory
    device = self._factory_device(device_type, **kwargs)
  File "/home/mans0954/Downloads/blivet-3.2-devel/tests/devicefactory_test.py", line 71, in _factory_device
    factory.configure()
  File "/home/mans0954/Downloads/blivet-3.2-devel/blivet/devicefactory.py", line 917, in configure
    raise_from(DeviceFactoryError(e), e)
  File "<string>", line 3, in raise_from
blivet.errors.DeviceFactoryError: Process reported exit code 5:   WARNING: Running as a non-root user. Functionality may be unavailable.
  /run/lock/lvm/P_global:aux: open failed: Permission denied

How should I run the tests to circumvent this? I have this problem on both Debian unstable and Ubuntu 20.04. (Assuming that I want to run the tests which don't require root as an unprivileged user.)

Thanks.

vojtechtrefny commented 4 years ago

We are running tests as root in our CI so we missed few changes that made the tests fail when running as non-root. #871 should fix this. I was able to successfully run the tests on Ubuntu 20.04 as a regular user.

mans0954 commented 4 years ago

@vojtechtrefny Thanks for the quick response. Your branch solves the Permission denied errors for me (although I am now left with one different error:

======================================================================
ERROR: test_min_max_size_alignment (devices_test.partition_test.PartitionDeviceTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/mans0954/src/python/blivet/vojtechtrefny-blivet/tests/devices_test/partition_test.py", line 165, in test_min_max_size_alignment
    disk.format.add_partition(start, disk.format.parted_device.length - 1)
  File "/home/mans0954/src/python/blivet/vojtechtrefny-blivet/blivet/threads.py", line 53, in run_with_lock
    return m(*args, **kwargs)
  File "/home/mans0954/src/python/blivet/vojtechtrefny-blivet/blivet/formats/disklabel.py", line 407, in add_partition
    self.parted_disk.addPartition(partition=new_partition,
  File "/usr/lib/python3/dist-packages/parted/decorators.py", line 42, in new
    ret = fn(*args, **kwds)
  File "/usr/lib/python3/dist-packages/parted/disk.py", line 244, in addPartition
    result = self.__disk.add_partition(partition.getPedPartition(),
_ped.PartitionException: Unable to satisfy all constraints on the partition.

)

vojtechtrefny commented 4 years ago

This is weird. With latest Debian testing this test case also fails for me, but on a different line (above your error) and only when running as non-root. And the test passes on Ubuntu 20.04 (both root and regular user).

vojtechtrefny commented 4 years ago

Even weirder: adding /sbin to PATH fixes all the test failures for me. I never understood why Debian doesn't have /sbin in PATH. I know only system tools should reside in /sbin but it's still a valid use case to run these tools as a regular user to get the tool version or help (end of Debian rant :-). But I still don't understand how this could affect the partitioning test where no command line tools are involved -- everything is done with pyparted/libparted. I had some issues with libparted when running libblockdev tests on Debian so maybe we have newer (or patched) version of libparted on Fedora, but this doesn't really explain why tests works when running as root. Anyway, we should definitely do a better job in separating unit tests and integration tests and run only unit tests when running as a regular users. Right now the tests are mixed together, but fixing this would be a tremendous job. I could simply skip this one test case when running as a regular user. It's not a real fix, but if it helps... Btw. why are you trying to run blivet tests as a regular user? Yes, the readme says it should work, but blivet won't work without root privilegies, so it doesn't really make sense to run the tests as a regular user.

mans0954 commented 4 years ago

Btw. why are you trying to run blivet tests as a regular user? Yes, the readme says it should work, but blivet won't work without root privilegies, so it doesn't really make sense to run the tests as a regular user.

@vojtechtrefny sorry for the delay in replying. I'm trying to build a Debian package for blivet. Debian packages specify tests in two places - tests run by dh_auto_test after the code has been built, but before the binary package has been created [1], and tests run by autopkgtest, which are run against the package when it has been installed into a system [2]. The former must run as a non-root user, in a chroot environment, whereas the latter can specify restrictions on the test bed such as needs-root, isolation-machine to run as root in a qemu/kvm virtual machine.

With the patches from your PR, the dh_auto_test step passes on Debian unstable, but the autopkgtest tests are still causing me some problems (expand details to see).

autopkgtest output ``` autopkgtest -U -B ../python3-blivet_3.2.2-1_all.deb -- qemu ~/qemu/autopkgtest-unstable.img autopkgtest [07:40:58]: version 5.11ubuntu1 autopkgtest [07:40:58]: host csh-Precision-5520; command line: /usr/bin/autopkgtest -U -B ../python3-blivet_3.2.2-1_all.deb -- qemu /home/mans0954/qemu/autopkgtest-unstable.img autopkgtest [07:41:15]: @@@@@@@@@@@@@@@@@@@@ test bed setup ```
``` Get:1 http://deb .debian.org/debian unstable InRelease [146 kB] Get:2 http://deb.debian.org/debian unstable/non-free Sources.diff/Index [27.8 kB] Get:3 http://deb.debian.org/debian unstable/main Sources.diff/Index [27.9 kB] Get:4 http://deb.debian.org/debian unstable/contrib Sources.diff/Index [27.8 kB] Get:5 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [27.9 kB] Get:6 http://deb.debian.org/debian unstable/non-free amd64 Packages.diff/Index [27.8 kB] Get:7 http://deb.debian.org/debian unstable/non-free Sources 2020-07-27-2008.06.pdiff [235 B] Get:8 http://deb.debian.org/debian unstable/non-free Sources 2020-07-28-0807.48.pdiff [341 B] Get:9 http://deb.debian.org/debian unstable/non-free Sources 2020-07-28-2010.19.pdiff [40 B] Get:9 http://deb.debian.org/debian unstable/non-free Sources 2020-07-28-2010.19.pdiff [40 B] Get:10 http://deb.debian.org/debian unstable/main Sources 2020-07-27-0809.40.pdiff [5992 B] Get:11 http://deb.debian.org/debian unstable/main Sources 2020-07-27-1408.46.pdiff [16.0 kB] Get:12 http://deb.debian.org/debian unstable/main Sources 2020-07-27-2008.06.pdiff [15.8 kB] Get:13 http://deb.debian.org/debian unstable/main Sources 2020-07-28-0202.50.pdiff [9389 B] Get:14 http://deb.debian.org/debian unstable/main Sources 2020-07-28-0807.48.pdiff [5094 B] Get:15 http://deb.debian.org/debian unstable/main Sources 2020-07-28-1408.27.pdiff [13.2 kB] Get:16 http://deb.debian.org/debian unstable/main Sources 2020-07-28-2010.19.pdiff [9403 B] Get:17 http://deb.debian.org/debian unstable/main Sources 2020-07-29-0202.57.pdiff [13.8 kB] Get:17 http://deb.debian.org/debian unstable/main Sources 2020-07-29-0202.57.pdiff [13.8 kB] Get:18 http://deb.debian.org/debian unstable/contrib Sources 2020-07-28-0807.48.pdiff [31 B] Get:19 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-27-0809.40.pdiff [4932 B] Get:20 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-27-1408.46.pdiff [18.8 kB] Get:21 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-27-2008.06.pdiff [11.4 kB] Get:18 http://deb.debian.org/debian unstable/contrib Sources 2020-07-28-0807.48.pdiff [31 B] Get:22 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-28-0202.50.pdiff [15.9 kB] Get:23 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-28-0807.48.pdiff [3968 B] Get:24 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-28-1408.27.pdiff [12.5 kB] Get:25 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-28-2010.19.pdiff [17.0 kB] Get:26 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-29-0202.57.pdiff [9258 B] Get:26 http://deb.debian.org/debian unstable/main amd64 Packages 2020-07-29-0202.57.pdiff [9258 B] Get:27 http://deb.debian.org/debian unstable/non-free amd64 Packages 2020-07-27-2008.06.pdiff [555 B] Get:28 http://deb.debian.org/debian unstable/non-free amd64 Packages 2020-07-28-0807.48.pdiff [209 B] Get:28 http://deb.debian.org/debian unstable/non-free amd64 Packages 2020-07-28-0807.48.pdiff [209 B] Fetched 469 kB in 3s (177 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... Calculating upgrade... The following packages will be upgraded: libelf1 libpam-systemd libsystemd0 libudev1 systemd systemd-sysv systemd-timesyncd udev 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 6779 kB of archives. After this operation, 379 kB of additional disk space will be used. Get:1 http://deb.debian.org/debian unstable/main amd64 systemd-sysv amd64 245.7-1 [108 kB] Get:2 http://deb.debian.org/debian unstable/main amd64 libpam-systemd amd64 245.7-1 [273 kB] Get:3 http://deb.debian.org/debian unstable/main amd64 udev amd64 245.7-1 [1511 kB] Get:4 http://deb.debian.org/debian unstable/main amd64 libudev1 amd64 245.7-1 [160 kB] Get:5 http://deb.debian.org/debian unstable/main amd64 systemd-timesyncd amd64 245.7-1 [126 kB] Get:6 http://deb.debian.org/debian unstable/main amd64 systemd amd64 245.7-1 [4080 kB] Get:7 http://deb.debian.org/debian unstable/main amd64 libsystemd0 amd64 245.7-1 [357 kB] Get:8 http://deb.debian.org/debian unstable/main amd64 libelf1 amd64 0.180-1 [164 kB] Fetched 6779 kB in 3s (2122 kB/s) (Reading database ... 18908 files and directories currently installed.) Preparing to unpack .../systemd-sysv_245.7-1_amd64.deb ... Unpacking systemd-sysv (245.7-1) over (245.6-3) ... Preparing to unpack .../libpam-systemd_245.7-1_amd64.deb ... Unpacking libpam-systemd:amd64 (245.7-1) over (245.6-3) ... Preparing to unpack .../udev_245.7-1_amd64.deb ... Unpacking udev (245.7-1) over (245.6-3) ... Preparing to unpack .../libudev1_245.7-1_amd64.deb ... Unpacking libudev1:amd64 (245.7-1) over (245.6-3) ... Setting up libudev1:amd64 (245.7-1) ... (Reading database ... 18908 files and directories currently installed.) Preparing to unpack .../systemd-timesyncd_245.7-1_amd64.deb ... Unpacking systemd-timesyncd (245.7-1) over (245.6-3) ... Preparing to unpack .../systemd_245.7-1_amd64.deb ... Unpacking systemd (245.7-1) over (245.6-3) ... Preparing to unpack .../libsystemd0_245.7-1_amd64.deb ... Unpacking libsystemd0:amd64 (245.7-1) over (245.6-3) ... Setting up libsystemd0:amd64 (245.7-1) ... (Reading database ... 18908 files and directories currently installed.) Preparing to unpack .../libelf1_0.180-1_amd64.deb ... Unpacking libelf1:amd64 (0.180-1) over (0.176-1.1) ... Setting up udev (245.7-1) ... Setting up libelf1:amd64 (0.180-1) ... Setting up systemd (245.7-1) ... Setting up systemd-timesyncd (245.7-1) ... Setting up systemd-sysv (245.7-1) ... Setting up libpam-systemd:amd64 (245.7-1) ... Processing triggers for initramfs-tools (0.137) ... update-initramfs: Generating /boot/initrd.img-5.7.0-2-amd64 Processing triggers for libc-bin (2.31-2) ... Processing triggers for dbus (1.12.20-1) ... autopkgtest [07:41:37]: rebooting testbed after setup commands that affected boot autopkgtest [07:42:01]: testbed running kernel: Linux 5.7.0-2-amd64 #1 SMP Debian 5.7.10-1 (2020-07-26) autopkgtest [07:42:02]: testbed dpkg architecture: amd64 autopkgtest [07:42:04]: @@@@@@@@@@@@@@@@@@@@ unbuilt-tree . dpkg-source: info: using patch list from debian/patches/series dpkg-source: info: applying 0001-tests-Patch-LVM-lvs-call-for-some-non-LVM-tests.patch dpkg-source: info: applying 0002-tests-Patch-LVM-availability-functions-for-some-test.patch dpkg-source: info: applying 0003-tests-Skip-test_reset-when-running-as-non-root.patch dpkg-source: info: applying 0004-systemd-location.patch dpkg-source: info: applying ubuntu.patch autopkgtest [07:42:07]: testing package blivet version 3.2.2-1 autopkgtest [07:42:07]: build not needed autopkgtest [07:42:07]: test command1: preparing testbed Get:1 file:/tmp/autopkgtest.1RR5ki/binaries InRelease Ign:1 file:/tmp/autopkgtest.1RR5ki/binaries InRelease Get:2 file:/tmp/autopkgtest.1RR5ki/binaries Release [816 B] Get:2 file:/tmp/autopkgtest.1RR5ki/binaries Release [816 B] Get:3 file:/tmp/autopkgtest.1RR5ki/binaries Release.gpg Ign:3 file:/tmp/autopkgtest.1RR5ki/binaries Release.gpg Get:4 file:/tmp/autopkgtest.1RR5ki/binaries Packages [1224 B] Reading package lists... Reading package lists... Building dependency tree... Reading state information... Correcting dependencies...Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done Done Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: btrfs-progs dmeventd dmraid dosfstools gir1.2-blockdev-2.0 gir1.2-glib-2.0 hfsplus kpartx libaio1 libblockdev-btrfs2 libblockdev-crypto2 libblockdev-dm2 libblockdev-loop2 libblockdev-lvm2 libblockdev-mdraid2 libblockdev-mpath2 libblockdev-nvdimm2 libblockdev-swap2 libblockdev-utils2 libblockdev2 libbytesize-common libbytesize1 libdaxctl1 libdevmapper-event1.02.1 libdmraid1.0.0.rc16 libgirepository-1.0-1 libglib2.0-0 libgpgme11 libhfsp0 libicu67 liblvm2cmd2.03 liblzo2-2 libndctl6 libnspr4 libnss3 libparted2 libreadline5 libsgutils2-2 liburcu6 libvolume-key1 lvm2 mdadm multipath-tools python3-blivet python3-blockdev python3-bytesize python3-dbus python3-distutils python3-gi python3-lib2to3 python3-mock python3-parted python3-pbr python3-pkg-resources python3-pyudev python3-selinux python3-setuptools python3-six sg3-utils sg3-utils-udev thin-provisioning-tools xfsprogs Suggested packages: duperemove parted libparted-dev libparted-i18n dracut-core multipath-tools-boot python-dbus-doc python3-dbus-dbg python-mock-doc python-parted-doc python-setuptools-doc xfsdump acl attr quota Recommended packages: libglib2.0-data shared-mime-info xdg-user-dirs default-mta | mail-transport-agent The following NEW packages will be installed: btrfs-progs dmeventd dmraid dosfstools gir1.2-blockdev-2.0 gir1.2-glib-2.0 hfsplus kpartx libaio1 libblockdev-btrfs2 libblockdev-crypto2 libblockdev-dm2 libblockdev-loop2 libblockdev-lvm2 libblockdev-mdraid2 libblockdev-mpath2 libblockdev-nvdimm2 libblockdev-swap2 libblockdev-utils2 libblockdev2 libbytesize-common libbytesize1 libdaxctl1 libdevmapper-event1.02.1 libdmraid1.0.0.rc16 libgirepository-1.0-1 libglib2.0-0 libgpgme11 libhfsp0 libicu67 liblvm2cmd2.03 liblzo2-2 libndctl6 libnspr4 libnss3 libparted2 libreadline5 libsgutils2-2 liburcu6 libvolume-key1 lvm2 mdadm multipath-tools python3-blivet python3-blockdev python3-bytesize python3-dbus python3-distutils python3-gi python3-lib2to3 python3-mock python3-parted python3-pbr python3-pkg-resources python3-pyudev python3-selinux python3-setuptools python3-six sg3-utils sg3-utils-udev thin-provisioning-tools xfsprogs 0 upgraded, 62 newly installed, 0 to remove and 0 not upgraded. 1 not fully installed or removed. Need to get 20.3 MB/20.6 MB of archives. After this operation, 77.6 MB of additional disk space will be used. Get:1 file:/tmp/autopkgtest.1RR5ki/binaries python3-blivet 3.2.2-1 [207 kB] Get:2 http://deb.debian.org/debian unstable/main amd64 libglib2.0-0 amd64 2.64.4-1 [1341 kB] Get:3 http://deb.debian.org/debian unstable/main amd64 libblockdev-utils2 amd64 2.24-2 [15.6 kB] Get:4 http://deb.debian.org/debian unstable/main amd64 libblockdev2 amd64 2.24-2 [38.7 kB] Get:5 http://deb.debian.org/debian unstable/main amd64 libgirepository-1.0-1 amd64 1.64.1-1 [96.0 kB] Get:6 http://deb.debian.org/debian unstable/main amd64 gir1.2-glib-2.0 amd64 1.64.1-1 [148 kB] Get:7 http://deb.debian.org/debian unstable/main amd64 python3-gi amd64 3.36.0-4 [231 kB] Get:8 http://deb.debian.org/debian unstable/main amd64 python3-blockdev all 2.24-2 [12.8 kB] Get:9 http://deb.debian.org/debian unstable/main amd64 libbytesize-common all 2.3-2 [6248 B] Get:10 http://deb.debian.org/debian unstable/main amd64 libbytesize1 amd64 2.3-2 [11.3 kB] Get:11 http://deb.debian.org/debian unstable/main amd64 python3-six all 1.15.0-1 [16.8 kB] Get:12 http://deb.debian.org/debian unstable/main amd64 python3-bytesize amd64 2.3-2 [7284 B] Get:13 http://deb.debian.org/debian unstable/main amd64 libparted2 amd64 3.3-4 [331 kB] Get:14 http://deb.debian.org/debian unstable/main amd64 python3-parted amd64 3.11.2-11.1+b2 [65.7 kB] Get:15 http://deb.debian.org/debian unstable/main amd64 python3-selinux amd64 3.1-2 [160 kB] Get:16 http://deb.debian.org/debian unstable/main amd64 gir1.2-blockdev-2.0 amd64 2.24-2 [22.8 kB] Get:17 http://deb.debian.org/debian unstable/main amd64 libaio1 amd64 0.3.112-8 [12.5 kB] Get:18 http://deb.debian.org/debian unstable/main amd64 libdevmapper-event1.02.1 amd64 2:1.02.171-1 [22.7 kB] Get:19 http://deb.debian.org/debian unstable/main amd64 libreadline5 amd64 5.2+dfsg-3+b13 [120 kB] Get:20 http://deb.debian.org/debian unstable/main amd64 liblvm2cmd2.03 amd64 2.03.09-1 [686 kB] Get:21 http://deb.debian.org/debian unstable/main amd64 dmeventd amd64 2:1.02.171-1 [68.4 kB] Get:22 http://deb.debian.org/debian unstable/main amd64 lvm2 amd64 2.03.09-1 [1159 kB] Get:23 http://deb.debian.org/debian unstable/main amd64 thin-provisioning-tools amd64 0.8.5-4 [375 kB] Get:24 http://deb.debian.org/debian unstable/main amd64 libblockdev-lvm2 amd64 2.24-2 [24.5 kB] Get:25 http://deb.debian.org/debian unstable/main amd64 liblzo2-2 amd64 2.10-2 [56.9 kB] Get:26 http://deb.debian.org/debian unstable/main amd64 btrfs-progs amd64 5.7-1 [690 kB] Get:27 http://deb.debian.org/debian unstable/main amd64 libblockdev-btrfs2 amd64 2.24-2 [13.5 kB] Get:28 http://deb.debian.org/debian unstable/main amd64 libblockdev-swap2 amd64 2.24-2 [11.2 kB] Get:29 http://deb.debian.org/debian unstable/main amd64 libblockdev-loop2 amd64 2.24-2 [9188 B] Get:30 http://deb.debian.org/debian unstable/main amd64 libnspr4 amd64 2:4.25-1 [112 kB] Get:31 http://deb.debian.org/debian unstable/main amd64 libnss3 amd64 2:3.53.1-1 [1210 kB] Get:32 http://deb.debian.org/debian unstable/main amd64 libgpgme11 amd64 1.13.1-9 [274 kB] Get:33 http://deb.debian.org/debian unstable/main amd64 libvolume-key1 amd64 0.3.12-3.1 [120 kB] Get:34 http://deb.debian.org/debian unstable/main amd64 libblockdev-crypto2 amd64 2.24-2 [19.4 kB] Get:35 http://deb.debian.org/debian unstable/main amd64 liburcu6 amd64 0.12.1-1 [70.3 kB] Get:36 http://deb.debian.org/debian unstable/main amd64 kpartx amd64 0.8.4-2 [38.5 kB] Get:37 http://deb.debian.org/debian unstable/main amd64 libsgutils2-2 amd64 1.45-1 [116 kB] Get:38 http://deb.debian.org/debian unstable/main amd64 sg3-utils amd64 1.45-1 [824 kB] Get:39 http://deb.debian.org/debian unstable/main amd64 sg3-utils-udev all 1.45-1 [39.7 kB] Get:40 http://deb.debian.org/debian unstable/main amd64 multipath-tools amd64 0.8.4-2 [311 kB] Get:41 http://deb.debian.org/debian unstable/main amd64 libblockdev-mpath2 amd64 2.24-2 [11.5 kB] Get:42 http://deb.debian.org/debian unstable/main amd64 libdmraid1.0.0.rc16 amd64 1.0.0.rc16-8+b1 [101 kB] Get:43 http://deb.debian.org/debian unstable/main amd64 dmraid amd64 1.0.0.rc16-8+b1 [36.3 kB] Get:44 http://deb.debian.org/debian unstable/main amd64 libblockdev-dm2 amd64 2.24-2 [12.6 kB] Get:45 http://deb.debian.org/debian unstable/main amd64 mdadm amd64 4.1-5 [449 kB] Get:46 http://deb.debian.org/debian unstable/main amd64 libblockdev-mdraid2 amd64 2.24-2 [15.5 kB] Get:47 http://deb.debian.org/debian unstable/main amd64 libdaxctl1 amd64 69-1 [17.0 kB] Get:48 http://deb.debian.org/debian unstable/main amd64 libndctl6 amd64 69-1 [52.3 kB] Get:49 http://deb.debian.org/debian unstable/main amd64 libblockdev-nvdimm2 amd64 2.24-2 [12.1 kB] Get:50 http://deb.debian.org/debian unstable/main amd64 python3-pyudev all 0.21.0-3 [40.6 kB] Get:51 http://deb.debian.org/debian unstable/main amd64 python3-dbus amd64 1.2.16-3 [107 kB] Get:52 http://deb.debian.org/debian unstable/main amd64 python3-pkg-resources all 46.1.3-1 [183 kB] Get:53 http://deb.debian.org/debian unstable/main amd64 python3-lib2to3 all 3.8.5-1 [78.4 kB] Get:54 http://deb.debian.org/debian unstable/main amd64 python3-distutils all 3.8.5-1 [145 kB] Get:55 http://deb.debian.org/debian unstable/main amd64 python3-setuptools all 46.1.3-1 [382 kB] Get:56 http://deb.debian.org/debian unstable/main amd64 python3-pbr all 5.4.5-3 [60.1 kB] Get:57 http://deb.debian.org/debian unstable/main amd64 python3-mock all 4.0.2-1 [34.3 kB] Get:58 http://deb.debian.org/debian unstable/main amd64 dosfstools amd64 4.1-2 [98.4 kB] Get:59 http://deb.debian.org/debian unstable/main amd64 libicu67 amd64 67.1-3 [8610 kB] Get:60 http://deb.debian.org/debian unstable/main amd64 xfsprogs amd64 5.6.0-1+b2 [930 kB] Get:61 http://deb.debian.org/debian unstable/main amd64 libhfsp0 amd64 1.0.4-15+b1 [35.8 kB] Get:62 http://deb.debian.org/debian unstable/main amd64 hfsplus amd64 1.0.4-15+b1 [44.8 kB] Preconfiguring packages ... Fetched 20.3 MB in 9s (2240 kB/s) Selecting previously unselected package libglib2.0-0:amd64. (Reading database ... 18908 files and directories currently installed.) Preparing to unpack .../00-libglib2.0-0_2.64.4-1_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.64.4-1) ... Selecting previously unselected package libblockdev-utils2:amd64. Preparing to unpack .../01-libblockdev-utils2_2.24-2_amd64.deb ... Unpacking libblockdev-utils2:amd64 (2.24-2) ... Selecting previously unselected package libblockdev2:amd64. Preparing to unpack .../02-libblockdev2_2.24-2_amd64.deb ... Unpacking libblockdev2:amd64 (2.24-2) ... Selecting previously unselected package libgirepository-1.0-1:amd64. Preparing to unpack .../03-libgirepository-1.0-1_1.64.1-1_amd64.deb ... Unpacking libgirepository-1.0-1:amd64 (1.64.1-1) ... Selecting previously unselected package gir1.2-glib-2.0:amd64. Preparing to unpack .../04-gir1.2-glib-2.0_1.64.1-1_amd64.deb ... Unpacking gir1.2-glib-2.0:amd64 (1.64.1-1) ... Selecting previously unselected package python3-gi. Preparing to unpack .../05-python3-gi_3.36.0-4_amd64.deb ... Unpacking python3-gi (3.36.0-4) ... Selecting previously unselected package python3-blockdev. Preparing to unpack .../06-python3-blockdev_2.24-2_all.deb ... Unpacking python3-blockdev (2.24-2) ... Selecting previously unselected package libbytesize-common. Preparing to unpack .../07-libbytesize-common_2.3-2_all.deb ... Unpacking libbytesize-common (2.3-2) ... Selecting previously unselected package libbytesize1:amd64. Preparing to unpack .../08-libbytesize1_2.3-2_amd64.deb ... Unpacking libbytesize1:amd64 (2.3-2) ... Selecting previously unselected package python3-six. Preparing to unpack .../09-python3-six_1.15.0-1_all.deb ... Unpacking python3-six (1.15.0-1) ... Selecting previously unselected package python3-bytesize. Preparing to unpack .../10-python3-bytesize_2.3-2_amd64.deb ... Unpacking python3-bytesize (2.3-2) ... Selecting previously unselected package libparted2:amd64. Preparing to unpack .../11-libparted2_3.3-4_amd64.deb ... Unpacking libparted2:amd64 (3.3-4) ... Selecting previously unselected package python3-parted. Preparing to unpack .../12-python3-parted_3.11.2-11.1+b2_amd64.deb ... Unpacking python3-parted (3.11.2-11.1+b2) ... Selecting previously unselected package python3-selinux. Preparing to unpack .../13-python3-selinux_3.1-2_amd64.deb ... Unpacking python3-selinux (3.1-2) ... Selecting previously unselected package gir1.2-blockdev-2.0:amd64. Preparing to unpack .../14-gir1.2-blockdev-2.0_2.24-2_amd64.deb ... Unpacking gir1.2-blockdev-2.0:amd64 (2.24-2) ... Selecting previously unselected package libaio1:amd64. Preparing to unpack .../15-libaio1_0.3.112-8_amd64.deb ... Unpacking libaio1:amd64 (0.3.112-8) ... Selecting previously unselected package libdevmapper-event1.02.1:amd64. Preparing to unpack .../16-libdevmapper-event1.02.1_2%3a1.02.171-1_amd64.deb ... Unpacking libdevmapper-event1.02.1:amd64 (2:1.02.171-1) ... Selecting previously unselected package libreadline5:amd64. Preparing to unpack .../17-libreadline5_5.2+dfsg-3+b13_amd64.deb ... Unpacking libreadline5:amd64 (5.2+dfsg-3+b13) ... Selecting previously unselected package liblvm2cmd2.03:amd64. Preparing to unpack .../18-liblvm2cmd2.03_2.03.09-1_amd64.deb ... Unpacking liblvm2cmd2.03:amd64 (2.03.09-1) ... Selecting previously unselected package dmeventd. Preparing to unpack .../19-dmeventd_2%3a1.02.171-1_amd64.deb ... Unpacking dmeventd (2:1.02.171-1) ... Selecting previously unselected package lvm2. Preparing to unpack .../20-lvm2_2.03.09-1_amd64.deb ... Unpacking lvm2 (2.03.09-1) ... Selecting previously unselected package thin-provisioning-tools. Preparing to unpack .../21-thin-provisioning-tools_0.8.5-4_amd64.deb ... Unpacking thin-provisioning-tools (0.8.5-4) ... Selecting previously unselected package libblockdev-lvm2:amd64. Preparing to unpack .../22-libblockdev-lvm2_2.24-2_amd64.deb ... Unpacking libblockdev-lvm2:amd64 (2.24-2) ... Selecting previously unselected package liblzo2-2:amd64. Preparing to unpack .../23-liblzo2-2_2.10-2_amd64.deb ... Unpacking liblzo2-2:amd64 (2.10-2) ... Selecting previously unselected package btrfs-progs. Preparing to unpack .../24-btrfs-progs_5.7-1_amd64.deb ... Unpacking btrfs-progs (5.7-1) ... Selecting previously unselected package libblockdev-btrfs2:amd64. Preparing to unpack .../25-libblockdev-btrfs2_2.24-2_amd64.deb ... Unpacking libblockdev-btrfs2:amd64 (2.24-2) ... Selecting previously unselected package libblockdev-swap2:amd64. Preparing to unpack .../26-libblockdev-swap2_2.24-2_amd64.deb ... Unpacking libblockdev-swap2:amd64 (2.24-2) ... Selecting previously unselected package libblockdev-loop2:amd64. Preparing to unpack .../27-libblockdev-loop2_2.24-2_amd64.deb ... Unpacking libblockdev-loop2:amd64 (2.24-2) ... Selecting previously unselected package libnspr4:amd64. Preparing to unpack .../28-libnspr4_2%3a4.25-1_amd64.deb ... Unpacking libnspr4:amd64 (2:4.25-1) ... Selecting previously unselected package libnss3:amd64. Preparing to unpack .../29-libnss3_2%3a3.53.1-1_amd64.deb ... Unpacking libnss3:amd64 (2:3.53.1-1) ... Selecting previously unselected package libgpgme11:amd64. Preparing to unpack .../30-libgpgme11_1.13.1-9_amd64.deb ... Unpacking libgpgme11:amd64 (1.13.1-9) ... Selecting previously unselected package libvolume-key1. Preparing to unpack .../31-libvolume-key1_0.3.12-3.1_amd64.deb ... Unpacking libvolume-key1 (0.3.12-3.1) ... Selecting previously unselected package libblockdev-crypto2:amd64. Preparing to unpack .../32-libblockdev-crypto2_2.24-2_amd64.deb ... Unpacking libblockdev-crypto2:amd64 (2.24-2) ... Selecting previously unselected package liburcu6:amd64. Preparing to unpack .../33-liburcu6_0.12.1-1_amd64.deb ... Unpacking liburcu6:amd64 (0.12.1-1) ... Selecting previously unselected package kpartx. Preparing to unpack .../34-kpartx_0.8.4-2_amd64.deb ... Unpacking kpartx (0.8.4-2) ... Selecting previously unselected package libsgutils2-2. Preparing to unpack .../35-libsgutils2-2_1.45-1_amd64.deb ... Unpacking libsgutils2-2 (1.45-1) ... Selecting previously unselected package sg3-utils. Preparing to unpack .../36-sg3-utils_1.45-1_amd64.deb ... Unpacking sg3-utils (1.45-1) ... Selecting previously unselected package sg3-utils-udev. Preparing to unpack .../37-sg3-utils-udev_1.45-1_all.deb ... Unpacking sg3-utils-udev (1.45-1) ... Selecting previously unselected package multipath-tools. Preparing to unpack .../38-multipath-tools_0.8.4-2_amd64.deb ... Unpacking multipath-tools (0.8.4-2) ... Selecting previously unselected package libblockdev-mpath2:amd64. Preparing to unpack .../39-libblockdev-mpath2_2.24-2_amd64.deb ... Unpacking libblockdev-mpath2:amd64 (2.24-2) ... Selecting previously unselected package libdmraid1.0.0.rc16. Preparing to unpack .../40-libdmraid1.0.0.rc16_1.0.0.rc16-8+b1_amd64.deb ... Unpacking libdmraid1.0.0.rc16 (1.0.0.rc16-8+b1) ... Selecting previously unselected package dmraid. Preparing to unpack .../41-dmraid_1.0.0.rc16-8+b1_amd64.deb ... Unpacking dmraid (1.0.0.rc16-8+b1) ... Selecting previously unselected package libblockdev-dm2:amd64. Preparing to unpack .../42-libblockdev-dm2_2.24-2_amd64.deb ... Unpacking libblockdev-dm2:amd64 (2.24-2) ... Selecting previously unselected package mdadm. Preparing to unpack .../43-mdadm_4.1-5_amd64.deb ... Unpacking mdadm (4.1-5) ... Selecting previously unselected package libblockdev-mdraid2:amd64. Preparing to unpack .../44-libblockdev-mdraid2_2.24-2_amd64.deb ... Unpacking libblockdev-mdraid2:amd64 (2.24-2) ... Selecting previously unselected package libdaxctl1:amd64. Preparing to unpack .../45-libdaxctl1_69-1_amd64.deb ... Unpacking libdaxctl1:amd64 (69-1) ... Selecting previously unselected package libndctl6:amd64. Preparing to unpack .../46-libndctl6_69-1_amd64.deb ... Unpacking libndctl6:amd64 (69-1) ... Selecting previously unselected package libblockdev-nvdimm2:amd64. Preparing to unpack .../47-libblockdev-nvdimm2_2.24-2_amd64.deb ... Unpacking libblockdev-nvdimm2:amd64 (2.24-2) ... Selecting previously unselected package python3-pyudev. Preparing to unpack .../48-python3-pyudev_0.21.0-3_all.deb ... Unpacking python3-pyudev (0.21.0-3) ... Selecting previously unselected package python3-dbus. Preparing to unpack .../49-python3-dbus_1.2.16-3_amd64.deb ... Unpacking python3-dbus (1.2.16-3) ... Selecting previously unselected package python3-blivet. Preparing to unpack .../50-python3-blivet.deb ... Unpacking python3-blivet (3.2.2-1) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../51-python3-pkg-resources_46.1.3-1_all.deb ... Unpacking python3-pkg-resources (46.1.3-1) ... Selecting previously unselected package python3-lib2to3. Preparing to unpack .../52-python3-lib2to3_3.8.5-1_all.deb ... Unpacking python3-lib2to3 (3.8.5-1) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../53-python3-distutils_3.8.5-1_all.deb ... Unpacking python3-distutils (3.8.5-1) ... Selecting previously unselected package python3-setuptools. Preparing to unpack .../54-python3-setuptools_46.1.3-1_all.deb ... Unpacking python3-setuptools (46.1.3-1) ... Selecting previously unselected package python3-pbr. Preparing to unpack .../55-python3-pbr_5.4.5-3_all.deb ... Unpacking python3-pbr (5.4.5-3) ... Selecting previously unselected package python3-mock. Preparing to unpack .../56-python3-mock_4.0.2-1_all.deb ... Unpacking python3-mock (4.0.2-1) ... Selecting previously unselected package dosfstools. Preparing to unpack .../57-dosfstools_4.1-2_amd64.deb ... Unpacking dosfstools (4.1-2) ... Selecting previously unselected package libicu67:amd64. Preparing to unpack .../58-libicu67_67.1-3_amd64.deb ... Unpacking libicu67:amd64 (67.1-3) ... Selecting previously unselected package xfsprogs. Preparing to unpack .../59-xfsprogs_5.6.0-1+b2_amd64.deb ... Unpacking xfsprogs (5.6.0-1+b2) ... Selecting previously unselected package libhfsp0. Preparing to unpack .../60-libhfsp0_1.0.4-15+b1_amd64.deb ... Unpacking libhfsp0 (1.0.4-15+b1) ... Selecting previously unselected package hfsplus. Preparing to unpack .../61-hfsplus_1.0.4-15+b1_amd64.deb ... Unpacking hfsplus (1.0.4-15+b1) ... Setting up python3-pkg-resources (46.1.3-1) ... Setting up libreadline5:amd64 (5.2+dfsg-3+b13) ... Setting up libsgutils2-2 (1.45-1) ... Setting up libdevmapper-event1.02.1:amd64 (2:1.02.171-1) ... Setting up libicu67:amd64 (67.1-3) ... Setting up libglib2.0-0:amd64 (2.64.4-1) ... No schema files found: doing nothing. Setting up dosfstools (4.1-2) ... Setting up liblzo2-2:amd64 (2.10-2) ... Setting up libgpgme11:amd64 (1.13.1-9) ... Setting up python3-six (1.15.0-1) ... Setting up libdmraid1.0.0.rc16 (1.0.0.rc16-8+b1) ... Setting up libblockdev-utils2:amd64 (2.24-2) ... Setting up libnspr4:amd64 (2:4.25-1) ... Setting up dmraid (1.0.0.rc16-8+b1) ... update-initramfs: deferring update (trigger activated) Setting up libbytesize-common (2.3-2) ... Setting up xfsprogs (5.6.0-1+b2) ... update-initramfs: deferring update (trigger activated) Setting up libdaxctl1:amd64 (69-1) ... Setting up libhfsp0 (1.0.4-15+b1) ... Setting up libparted2:amd64 (3.3-4) ... Setting up liburcu6:amd64 (0.12.1-1) ... Setting up kpartx (0.8.4-2) ... Setting up python3-selinux (3.1-2) ... Setting up libndctl6:amd64 (69-1) ... Setting up libgirepository-1.0-1:amd64 (1.64.1-1) ... Setting up libbytesize1:amd64 (2.3-2) ... Setting up python3-pyudev (0.21.0-3) ... Setting up libaio1:amd64 (0.3.112-8) ... Setting up python3-lib2to3 (3.8.5-1) ... Setting up mdadm (4.1-5) ... Generating mdadm.conf... done. update-initramfs: deferring update (trigger activated) Generating grub configuration file ... Found linux image: /boot/vmlinuz-5.7.0-2-amd64 Found initrd image: /boot/initrd.img-5.7.0-2-amd64 File descriptor 3 (pipe:[16391]) leaked on lvs invocation. Parent PID 1563: /bin/sh done update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults Setting up sg3-utils (1.45-1) ... Setting up python3-distutils (3.8.5-1) ... Setting up hfsplus (1.0.4-15+b1) ... Setting up libblockdev-mdraid2:amd64 (2.24-2) ... Setting up python3-dbus (1.2.16-3) ... Setting up libblockdev-swap2:amd64 (2.24-2) ... Setting up python3-setuptools (46.1.3-1) ... Setting up python3-bytesize (2.3-2) ... Setting up python3-pbr (5.4.5-3) ... Setting up btrfs-progs (5.7-1) ... Setting up libblockdev-dm2:amd64 (2.24-2) ... Setting up libblockdev-loop2:amd64 (2.24-2) ... Setting up python3-parted (3.11.2-11.1+b2) ... Setting up libblockdev-nvdimm2:amd64 (2.24-2) ... Setting up libnss3:amd64 (2:3.53.1-1) ... Setting up libblockdev2:amd64 (2.24-2) ... Setting up sg3-utils-udev (1.45-1) ... update-initramfs: deferring update (trigger activated) update-initramfs: deferring update (trigger activated) Setting up python3-mock (4.0.2-1) ... Setting up libblockdev-btrfs2:amd64 (2.24-2) ... Setting up thin-provisioning-tools (0.8.5-4) ... update-initramfs: deferring update (trigger activated) Setting up gir1.2-glib-2.0:amd64 (1.64.1-1) ... Setting up libvolume-key1 (0.3.12-3.1) ... Setting up gir1.2-blockdev-2.0:amd64 (2.24-2) ... Setting up libblockdev-crypto2:amd64 (2.24-2) ... Setting up multipath-tools (0.8.4-2) ... Created symlink /etc/systemd/system/multipath-tools.service → /lib/systemd/system/multipathd.service. Created symlink /etc/systemd/system/sysinit.target.wants/multipathd.service → /lib/systemd/system/multipathd.service. Created symlink /etc/systemd/system/sockets.target.wants/multipathd.socket → /lib/systemd/system/multipathd.socket. Setting up libblockdev-mpath2:amd64 (2.24-2) ... Setting up python3-gi (3.36.0-4) ... Setting up python3-blockdev (2.24-2) ... Setting up liblvm2cmd2.03:amd64 (2.03.09-1) ... Setting up dmeventd (2:1.02.171-1) ... Created symlink /etc/systemd/system/sockets.target.wants/dm-event.socket → /lib/systemd/system/dm-event.socket. dm-event.service is a disabled or a static unit, not starting it. Setting up lvm2 (2.03.09-1) ... update-initramfs: deferring update (trigger activated) Created symlink /etc/systemd/system/sysinit.target.wants/blk-availability.service → /lib/systemd/system/blk-availability.service. Created symlink /etc/systemd/system/sysinit.target.wants/lvm2-monitor.service → /lib/systemd/system/lvm2-monitor.service. Created symlink /etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket → /lib/systemd/system/lvm2-lvmpolld.socket. Setting up libblockdev-lvm2:amd64 (2.24-2) ... Setting up python3-blivet (3.2.2-1) ... blivet.service is a disabled or a static unit, not starting it. Setting up autopkgtest-satdep (0) ... Processing triggers for libc-bin (2.31-2) ... Processing triggers for systemd (245.7-1) ... Processing triggers for dbus (1.12.20-1) ... Processing triggers for initramfs-tools (0.137) ... update-initramfs: Generating /boot/initrd.img-5.7.0-2-amd64 (Reading database ... 20814 files and directories currently installed.) Removing autopkgtest-satdep (0) ... ```
``` autopkgtest [07:42:52]: test command1: ./debian/tests/run_tests.sh autopkgtest [07:42:52]: test command1: [----------------------- Testing with python3.8: ```
``` test_device_configuration (action_test.ConfigurationActionsTest) ... ok test_format_configuration (action_test.ConfigurationActionsTest) ... ok test_action_apply_cancel (action_test.DeviceActionTestCase) ... skipped 'some unsupported format classes required for this test' test_action_creation (action_test.DeviceActionTestCase) Verify correct operation of action class constructors. ... skipped 'some unsupported format classes required for this test' test_action_dependencies (action_test.DeviceActionTestCase) Verify correct functioning of action dependencies. ... skipped 'some unsupported format classes required for this test' test_action_obsoletes (action_test.DeviceActionTestCase) Verify correct operation of DeviceAction.obsoletes. ... skipped 'some unsupported format classes required for this test' test_action_pruning (action_test.DeviceActionTestCase) Verify correct functioning of action pruning. ... skipped 'some unsupported format classes required for this test' test_action_registration (action_test.DeviceActionTestCase) Verify correct operation of action registration and cancelling. ... skipped 'some unsupported format classes required for this test' test_action_sorting (action_test.DeviceActionTestCase) Verify correct functioning of action sorting. ... skipped 'some unsupported format classes required for this test' test_actions (action_test.DeviceActionTestCase) Verify correct management of actions. ... skipped 'some unsupported format classes required for this test' test_container_actions (action_test.DeviceActionTestCase) ... skipped 'some unsupported format classes required for this test' test_lv_from_lvs_actions (action_test.DeviceActionTestCase) ... skipped 'some unsupported format classes required for this test' test_properties (dbus_test.DBusActionTestCase) ... ok test_Commit (dbus_test.DBusBlivetTestCase) ... ok test_Factory (dbus_test.DBusBlivetTestCase) ... ok test_InitializeDisk (dbus_test.DBusBlivetTestCase) ... ok test_ListDevices (dbus_test.DBusBlivetTestCase) Verify that ListDevices returns what it should. ... ok test_RemoveDevice (dbus_test.DBusBlivetTestCase) ... ok test_Reset (dbus_test.DBusBlivetTestCase) Verify that Reset calls the underlying Blivet's reset method. ... ok test_properties (dbus_test.DBusDeviceTestCase) ... ok test_properties (dbus_test.DBusFormatTestCase) ... ok test_properties (dbus_test.DBusObjectTestCase) ... ok test_default_factory_type (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_device_factory (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_factory_defaults (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_get_free_disk_space (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_normalize_size (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_default_factory_type (devicefactory_test.LVMFactoryTestCase) ... ok test_device_factory (devicefactory_test.LVMFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.LVMFactoryTestCase) ... ok test_get_container (devicefactory_test.LVMFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.LVMFactoryTestCase) ... ok test_normalize_size (devicefactory_test.LVMFactoryTestCase) ... ok test_default_factory_type (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_device_factory (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_get_container (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_normalize_size (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_default_factory_type (devicefactory_test.MDFactoryTestCase) ... ok test_device_factory (devicefactory_test.MDFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.MDFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.MDFactoryTestCase) ... ok test_mdfactory (devicefactory_test.MDFactoryTestCase) ... ok test_normalize_size (devicefactory_test.MDFactoryTestCase) ... ok test_bug1178884 (devicefactory_test.PartitionFactoryTestCase) ... ok test_default_factory_type (devicefactory_test.PartitionFactoryTestCase) ... ok test_device_factory (devicefactory_test.PartitionFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.PartitionFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.PartitionFactoryTestCase) ... ok test_normalize_size (devicefactory_test.PartitionFactoryTestCase) ... ok test_lsm_dependency_guard (devicelibs_test.disk_test.DiskLibTestCase) Validate handling of missing lsm dependency. ... ok test_lsm_error_handling (devicelibs_test.disk_test.DiskLibTestCase) Validate handling of potential lsm errors. ... ok test_update_volume_list (devicelibs_test.disk_test.DiskLibTestCase) Validate conversion of lsm data. ... ok test_collect_edd_data_absurd_virt (devicelibs_test.edd_test.EddTestCase) ... ERROR test_collect_edd_data_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_edd_data_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_edd_data_sata_usb (devicelibs_test.edd_test.EddTestCase) ... ERROR test_collect_edd_data_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_mbrs_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_mbrs_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_mbrs_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ... FAIL test_get_edd_dict_absurd_virt (devicelibs_test.edd_test.EddTestCase) ... ERROR test_get_edd_dict_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_get_edd_dict_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_get_edd_dict_sata_usb (devicelibs_test.edd_test.EddTestCase) ... ERROR test_get_edd_dict_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ... FAIL test_mdraid (devicelibs_test.mdraid_test.MDRaidTestCase) ... ok test_raid (devicelibs_test.raid_test.RaidTestCase) ... ok test_dependencies (devices_test.dependencies_test.DeviceDependenciesTestCase) ... ok test_weak_dependencies (devices_test.dependencies_test.MissingWeakDependenciesTestCase) ... skipped 'Missing libblockdev plugins needed from weak dependencies test.' test_availability_mdraidplugin (devices_test.dependencies_test.MockingDeviceDependenciesTestCase1) ... ok test_dependencies_handling (devices_test.dependencies_test.MockingDeviceDependenciesTestCase2) ... ok test_create (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_logical_volume (devices_test.device_names_test.DeviceNameTestCase) ... ok test_storage_device (devices_test.device_names_test.DeviceNameTestCase) ... ok test_volume_group (devices_test.device_names_test.DeviceNameTestCase) ... ok test_packages (devices_test.device_packages_test.DevicePackagesTestCase) ... ok test_btrfsdevice_init (devices_test.device_properties_test.BTRFSDeviceTestCase) Tests the state of a BTRFSDevice after initialization. ... ok test_btrfsdevice_methods (devices_test.device_properties_test.BTRFSDeviceTestCase) Test for method calls on initialized BTRFS Devices. ... ok test_btrfssnap_shot_device_init (devices_test.device_properties_test.BTRFSDeviceTestCase) ... ok test_resizable (devices_test.device_properties_test.BTRFSDeviceTestCase) Test resizable property of unformatted devices. ... ok test_resizable (devices_test.device_properties_test.DeviceStateTestCase) Test resizable property of unformatted devices. ... ok test_lvmlogical_volume_device_init (devices_test.device_properties_test.LVMLogicalVolumeDeviceTestCase) ... ok test_lvmlogical_volume_device_init_cached (devices_test.device_properties_test.LVMLogicalVolumeDeviceTestCase) ... ok test_resizable (devices_test.device_properties_test.LVMLogicalVolumeDeviceTestCase) Test resizable property of unformatted devices. ... ok test_mdraid_array_device_init (devices_test.device_properties_test.MDRaidArrayDeviceTestCase) Tests the state of a MDRaidArrayDevice after initialization. ... ok test_mdraid_array_device_methods (devices_test.device_properties_test.MDRaidArrayDeviceTestCase) Test for method calls on initialized MDRaidDevices. ... ok test_resizable (devices_test.device_properties_test.MDRaidArrayDeviceTestCase) Test resizable property of unformatted devices. ... ok test_disk_raid_properties (devices_test.disk_test.DiskDeviceRAIDPropertiesTestCase) ... ok test_new_lv_from_lvs (devices_test.lvm_test.BlivetNewLVMDeviceTest) ... ok test_new_lv_from_non_existing_lvs (devices_test.lvm_test.BlivetNewLVMDeviceTest) ... ok test_lvm_inconsistent_sector_size (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_insuf_seg_type (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_metadata_size (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_mirror (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_pv_free_cached (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_pv_free_linear (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_raid_level (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_segtype_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_segtype_pv_free (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_with_pvs_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmcached_logical_volume_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmcached_two_logical_volume_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmsnap_shot_device_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmthin_snap_shot_device_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_skip_activate (devices_test.lvm_test.LVMDeviceTest) ... ok test_target_size (devices_test.lvm_test.LVMDeviceTest) ... ok test_vg_is_empty (devices_test.lvm_test.LVMDeviceTest) ... ok test_type_specific_calls (devices_test.lvm_test.TypeSpecificCallsTest) ... ok test_chunk_size1 (devices_test.md_test.MDRaidArrayDeviceTest) ... ok test_chunk_size2 (devices_test.md_test.MDRaidArrayDeviceTest) ... ok test_net_dev_setting (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option setting after format assignment. ... ok test_net_dev_update (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option setting after device creation. ... ok test_net_dev_update_remove (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option is removed after removing the netdev parent. ... ok test_net_device_manual (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option is not removed if explicitly set by the user. ... ok test_ctor_parted_partition_error_handling (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_disk_is_empty (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_extended_min_size (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_min_max_size_alignment (devices_test.partition_test.PartitionDeviceTestCase) ... skipped 'not working on Ubuntu' test_target_size (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_weight_1 (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_weight_2 (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_size_getter (devices_test.size_test.LUKSDeviceSizeTest) ... ok test_size_setter (devices_test.size_test.LUKSDeviceSizeTest) ... ok test_size_getter (devices_test.size_test.StorageDeviceSizeTest) ... ok test_size_setter (devices_test.size_test.StorageDeviceSizeTest) ... ok test_auto_tags (devices_test.tags_test.DeviceTagsTest) ... ok test_tags (devices_test.tags_test.DeviceTagsTest) ... ok test_add_device (devicetree_test.DeviceTreeTestCase) ... ok test_device_name (devicetree_test.DeviceTreeTestCase) ... ok test_get_device_by_name (devicetree_test.DeviceTreeTestCase) ... ok test_get_related_disks (devicetree_test.DeviceTreeTestCase) ... ok test_hide_ignored_disks (devicetree_test.DeviceTreeTestCase) ... ok test_ignored_disk_tags (devicetree_test.DeviceTreeTestCase) ... ok test_recursive_remove (devicetree_test.DeviceTreeTestCase) ... ok test_remove_device (devicetree_test.DeviceTreeTestCase) ... ok test_reset (devicetree_test.DeviceTreeTestCase) ... ok test_resolve_device (devicetree_test.DeviceTreeTestCase) ... ok testEventMask (events_test.EventManagerTest) ... ok test_formats (formats_test.device_test.DeviceFormatTestCase) ... ok test_value (formats_test.device_test.DeviceValueTestCase) ... ok test_best_label_type (formats_test.disklabel_test.DiskLabelTestCase) 1. is always in _disklabel_types ... ok test_get_alignment (formats_test.disklabel_test.DiskLabelTestCase) ... ok test_label_type_size_check (formats_test.disklabel_test.DiskLabelTestCase) ... ok test_platform_label_types (formats_test.disklabel_test.DiskLabelTestCase) ... ok test_creation (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create filesystem Apple Bootstrap' test_instantiation (formats_test.fs_test.AppleBootstrapFSTestCase) ... ok test_labeling (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not label filesystem Apple Bootstrap' test_mounting (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create filesystem Apple Bootstrap' test_mountpoint (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create or mount filesystem Apple Bootstrap' test_no_explicit_target_size (formats_test.fs_test.AppleBootstrapFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.AppleBootstrapFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not label filesystem Apple Bootstrap' test_resize (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create filesystem Apple Bootstrap' test_shrink (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.BTRFSTestCase) ... ok test_instantiation (formats_test.fs_test.BTRFSTestCase) ... ok test_labeling (formats_test.fs_test.BTRFSTestCase) ... skipped 'can not label filesystem btrfs' test_mounting (formats_test.fs_test.BTRFSTestCase) ... skipped 'no mounting filesystem btrfs' test_mountpoint (formats_test.fs_test.BTRFSTestCase) ... skipped 'no mounting filesystem btrfs' test_no_explicit_target_size (formats_test.fs_test.BTRFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.BTRFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.BTRFSTestCase) ... skipped 'can not label filesystem btrfs' test_resize (formats_test.fs_test.BTRFSTestCase) ... ok test_shrink (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create filesystem bind' test_instantiation (formats_test.fs_test.BindFSTestCase) ... ok test_labeling (formats_test.fs_test.BindFSTestCase) ... skipped 'can not label filesystem bind' test_mounting (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create filesystem bind' test_mountpoint (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create or mount filesystem bind' test_no_explicit_target_size (formats_test.fs_test.BindFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.BindFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.BindFSTestCase) ... skipped 'can not label filesystem bind' test_resize (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create filesystem bind' test_shrink (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.DevPtsFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.DevPtsFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.EFIFSTestCase) ... ok test_instantiation (formats_test.fs_test.EFIFSTestCase) ... ok test_labeling (formats_test.fs_test.EFIFSTestCase) ... ok test_mounting (formats_test.fs_test.EFIFSTestCase) ... ok test_mountpoint (formats_test.fs_test.EFIFSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.EFIFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.EFIFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.EFIFSTestCase) ... ok test_resize (formats_test.fs_test.EFIFSTestCase) ... ok test_shrink (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.Ext2FSTestCase) ... ok test_instantiation (formats_test.fs_test.Ext2FSTestCase) ... ok test_labeling (formats_test.fs_test.Ext2FSTestCase) ... ok test_mounting (formats_test.fs_test.Ext2FSTestCase) ... ok test_mountpoint (formats_test.fs_test.Ext2FSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.Ext2FSTestCase) Because _target_size has not been set, resize sets to min size. ... ok test_no_explicit_target_size2 (formats_test.fs_test.Ext2FSTestCase) Because _target_size has been set to size in constructor the ... ok test_relabeling (formats_test.fs_test.Ext2FSTestCase) ... ok test_resize (formats_test.fs_test.Ext2FSTestCase) ... ok test_shrink (formats_test.fs_test.Ext2FSTestCase) ... ok test_too_big (formats_test.fs_test.Ext2FSTestCase) ... ok test_too_big2 (formats_test.fs_test.Ext2FSTestCase) ... ok test_too_small (formats_test.fs_test.Ext2FSTestCase) ... ok test_creation (formats_test.fs_test.Ext3FSTestCase) ... ok test_instantiation (formats_test.fs_test.Ext3FSTestCase) ... ok test_labeling (formats_test.fs_test.Ext3FSTestCase) ... ok test_mounting (formats_test.fs_test.Ext3FSTestCase) ... ok test_mountpoint (formats_test.fs_test.Ext3FSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.Ext3FSTestCase) Because _target_size has not been set, resize sets to min size. ... ok test_no_explicit_target_size2 (formats_test.fs_test.Ext3FSTestCase) Because _target_size has been set to size in constructor the ... ok test_relabeling (formats_test.fs_test.Ext3FSTestCase) ... ok test_resize (formats_test.fs_test.Ext3FSTestCase) ... ok test_shrink (formats_test.fs_test.Ext3FSTestCase) ... ok test_too_big (formats_test.fs_test.Ext3FSTestCase) ... ok test_too_big2 (formats_test.fs_test.Ext3FSTestCase) ... ok test_too_small (formats_test.fs_test.Ext3FSTestCase) ... ok test_creation (formats_test.fs_test.Ext4FSTestCase) ... ok test_instantiation (formats_test.fs_test.Ext4FSTestCase) ... ok test_labeling (formats_test.fs_test.Ext4FSTestCase) ... ok test_mounting (formats_test.fs_test.Ext4FSTestCase) ... ok test_mountpoint (formats_test.fs_test.Ext4FSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.Ext4FSTestCase) Because _target_size has not been set, resize sets to min size. ... ok test_no_explicit_target_size2 (formats_test.fs_test.Ext4FSTestCase) Because _target_size has been set to size in constructor the ... ok test_relabeling (formats_test.fs_test.Ext4FSTestCase) ... ok test_resize (formats_test.fs_test.Ext4FSTestCase) ... ok test_shrink (formats_test.fs_test.Ext4FSTestCase) ... ok test_too_big (formats_test.fs_test.Ext4FSTestCase) ... ok test_too_big2 (formats_test.fs_test.Ext4FSTestCase) ... ok test_too_small (formats_test.fs_test.Ext4FSTestCase) ... ok test_creation (formats_test.fs_test.FATFSTestCase) ... ok test_instantiation (formats_test.fs_test.FATFSTestCase) ... ok test_labeling (formats_test.fs_test.FATFSTestCase) ... ok test_mounting (formats_test.fs_test.FATFSTestCase) ... ok test_mountpoint (formats_test.fs_test.FATFSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.FATFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.FATFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.FATFSTestCase) ... ok test_resize (formats_test.fs_test.FATFSTestCase) ... ok test_shrink (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_instantiation (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_labeling (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_mounting (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_mountpoint (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_no_explicit_target_size (formats_test.fs_test.GFS2TestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create GFS2 filesystem.' test_no_explicit_target_size2 (formats_test.fs_test.GFS2TestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create GFS2 filesystem.' test_relabeling (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_resize (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_shrink (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_too_big (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_too_big2 (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_too_small (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_creation (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create filesystem hfs+' test_instantiation (formats_test.fs_test.HFSPlusTestCase) ... ok test_labeling (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not label filesystem hfs+' test_mounting (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create filesystem hfs+' test_mountpoint (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create or mount filesystem hfs+' test_no_explicit_target_size (formats_test.fs_test.HFSPlusTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.HFSPlusTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not label filesystem hfs+' test_resize (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create filesystem hfs+' test_shrink (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.HFSTestCase) ... skipped 'can not create filesystem hfs' test_instantiation (formats_test.fs_test.HFSTestCase) ... ok test_labeling (formats_test.fs_test.HFSTestCase) ... skipped 'can not label filesystem hfs' test_mounting (formats_test.fs_test.HFSTestCase) ... skipped 'can not create filesystem hfs' test_mountpoint (formats_test.fs_test.HFSTestCase) ... skipped 'can not create or mount filesystem hfs' test_no_explicit_target_size (formats_test.fs_test.HFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.HFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.HFSTestCase) ... skipped 'can not label filesystem hfs' test_resize (formats_test.fs_test.HFSTestCase) ... skipped 'can not create filesystem hfs' test_shrink (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.Iso9660FS) ... skipped 'can not create filesystem iso9660' test_instantiation (formats_test.fs_test.Iso9660FS) ... ok test_labeling (formats_test.fs_test.Iso9660FS) ... skipped 'can not label filesystem iso9660' test_mounting (formats_test.fs_test.Iso9660FS) ... skipped 'can not create filesystem iso9660' test_mountpoint (formats_test.fs_test.Iso9660FS) ... skipped 'can not create or mount filesystem iso9660' test_no_explicit_target_size (formats_test.fs_test.Iso9660FS) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.Iso9660FS) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.Iso9660FS) ... skipped 'can not label filesystem iso9660' test_resize (formats_test.fs_test.Iso9660FS) ... skipped 'can not create filesystem iso9660' test_shrink (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.JFSTestCase) ... skipped 'can not create filesystem jfs' test_instantiation (formats_test.fs_test.JFSTestCase) ... ok test_labeling (formats_test.fs_test.JFSTestCase) ... skipped 'can not label filesystem jfs' test_mounting (formats_test.fs_test.JFSTestCase) ... skipped 'can not create filesystem jfs' test_mountpoint (formats_test.fs_test.JFSTestCase) ... skipped 'can not create or mount filesystem jfs' test_no_explicit_target_size (formats_test.fs_test.JFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.JFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.JFSTestCase) ... skipped 'can not label filesystem jfs' test_resize (formats_test.fs_test.JFSTestCase) ... skipped 'can not create filesystem jfs' test_shrink (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create filesystem Linux HFS+ ESP' test_instantiation (formats_test.fs_test.MacEFIFSTestCase) ... ok test_labeling (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not label filesystem Linux HFS+ ESP' test_mounting (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create filesystem Linux HFS+ ESP' test_mountpoint (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create or mount filesystem Linux HFS+ ESP' test_no_explicit_target_size (formats_test.fs_test.MacEFIFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.MacEFIFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not label filesystem Linux HFS+ ESP' test_resize (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create filesystem Linux HFS+ ESP' test_shrink (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_instantiation (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_labeling (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_mounting (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_mountpoint (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size (formats_test.fs_test.NFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size2 (formats_test.fs_test.NFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create because device fails device_check().' test_relabeling (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_resize (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_shrink (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big2 (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_too_small (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_creation (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_instantiation (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_labeling (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_mounting (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_mountpoint (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size (formats_test.fs_test.NFSv4TestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size2 (formats_test.fs_test.NFSv4TestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create because device fails device_check().' test_relabeling (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_resize (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_shrink (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big2 (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_too_small (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_creation (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_instantiation (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_labeling (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_mounting (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_mountpoint (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_no_explicit_target_size (formats_test.fs_test.NTFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create because NTFS._formattable is False.' test_no_explicit_target_size2 (formats_test.fs_test.NTFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create because NTFS._formattable is False.' test_relabeling (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_resize (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_shrink (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_too_big (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_too_big2 (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_too_small (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_creation (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.NoDevFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.NoDevFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.ProcFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.ProcFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create filesystem reiserfs' test_instantiation (formats_test.fs_test.ReiserFSTestCase) ... ok test_labeling (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not label filesystem reiserfs' test_mounting (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create filesystem reiserfs' test_mountpoint (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create or mount filesystem reiserfs' test_no_explicit_target_size (formats_test.fs_test.ReiserFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.ReiserFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not label filesystem reiserfs' test_resize (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create filesystem reiserfs' test_shrink (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_resize (formats_test.fs_test.ResizeTmpFSTestCase) ... ok test_shrink (formats_test.fs_test.ResizeTmpFSTestCase) ... ok test_creation (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.SELinuxFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.SELinuxFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_simple (formats_test.fs_test.SimpleTmpFSTestCase) ... ok test_creation (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.SysFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.SysFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.TmpFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.TmpFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.USBFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.USBFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.XFSTestCase) ... ok test_instantiation (formats_test.fs_test.XFSTestCase) ... ok test_labeling (formats_test.fs_test.XFSTestCase) ... ok test_mounting (formats_test.fs_test.XFSTestCase) ... ok test_mountpoint (formats_test.fs_test.XFSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.XFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.XFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.XFSTestCase) ... ok test_resize (formats_test.fs_test.XFSTestCase) ... ok test_shrink (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_formats_methods (formats_test.init_test.FormatsTestCase) ... ok test_creating (formats_test.labeling_test.Ext2FSTestCase) Create the filesystem when passing a valid label. ... ok test_creating_empty (formats_test.labeling_test.Ext2FSTestCase) Create a filesystem with an empty label. ... ok test_creating_none (formats_test.labeling_test.Ext2FSTestCase) Create a filesystem with the label None. ... ok test_labeling (formats_test.labeling_test.Ext2FSTestCase) A sequence of tests of filesystem labeling. ... ok test_creating (formats_test.labeling_test.FATFSTestCase) Create the filesystem when passing a valid label. ... ok test_creating_empty (formats_test.labeling_test.FATFSTestCase) Create a filesystem with an empty label. ... ok test_creating_none (formats_test.labeling_test.FATFSTestCase) Create a filesystem with the label None. ... ok test_labeling (formats_test.labeling_test.FATFSTestCase) A sequence of tests of filesystem labeling. ... ok test_creating (formats_test.labeling_test.HFSPlusTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem hfs+' test_creating_empty (formats_test.labeling_test.HFSPlusTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem hfs+' test_creating_none (formats_test.labeling_test.HFSPlusTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem hfs+' test_labeling (formats_test.labeling_test.HFSPlusTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem hfs+' test_creating (formats_test.labeling_test.HFSTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem hfs' test_creating_empty (formats_test.labeling_test.HFSTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem hfs' test_creating_none (formats_test.labeling_test.HFSTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem hfs' test_labeling (formats_test.labeling_test.HFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem hfs' test_labels (formats_test.labeling_test.InitializationTestCase) Initialize some filesystems with valid and invalid labels. ... ok test_creating (formats_test.labeling_test.JFSTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem jfs' test_creating_empty (formats_test.labeling_test.JFSTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem jfs' test_creating_none (formats_test.labeling_test.JFSTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem jfs' test_labeling (formats_test.labeling_test.JFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem jfs' test_creating_swap_space_empty (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_creating_swap_space_none (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_labeling (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_relabel (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_creating (formats_test.labeling_test.NTFSTestCase) Create the filesystem when passing a valid label. ... skipped 'Unable to create NTFS filesystem.' test_creating_empty (formats_test.labeling_test.NTFSTestCase) Create a filesystem with an empty label. ... skipped 'Unable to create NTFS filesystem.' test_creating_none (formats_test.labeling_test.NTFSTestCase) Create a filesystem with the label None. ... skipped 'Unable to create NTFS filesystem.' test_labeling (formats_test.labeling_test.NTFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'Unable to create NTFS filesystem.' test_creating (formats_test.labeling_test.ReiserFSTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem reiserfs' test_creating_empty (formats_test.labeling_test.ReiserFSTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem reiserfs' test_creating_none (formats_test.labeling_test.ReiserFSTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem reiserfs' test_labeling (formats_test.labeling_test.ReiserFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem reiserfs' test_creating (formats_test.labeling_test.XFSTestCase) Create the filesystem when passing a valid label. ... ok test_creating_empty (formats_test.labeling_test.XFSTestCase) Create a filesystem with an empty label. ... ok test_creating_none (formats_test.labeling_test.XFSTestCase) Create a filesystem with the label None. ... ok test_labeling (formats_test.labeling_test.XFSTestCase) A sequence of tests of filesystem labeling. ... ok test_create_discard_option (formats_test.luks_test.LUKSNodevTestCase) ... ok test_key_size (formats_test.luks_test.LUKSNodevTestCase) ... ok test_resize (formats_test.luks_test.LUKSTestCase) ... ok test_size (formats_test.luks_test.LUKSTestCase) ... ok test_resize (formats_test.lvmpv_test.LVMPVTestCase) ... ok test_size (formats_test.lvmpv_test.LVMPVTestCase) ... ok test_create (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_setup (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_create (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_setup (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_create (formats_test.methods_test.FSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.FSMethodsTestCase) ... ok test_setup (formats_test.methods_test.FSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.FSMethodsTestCase) ... ok test_create (formats_test.methods_test.FormatMethodsTestCase) ... ok test_destroy (formats_test.methods_test.FormatMethodsTestCase) ... ok test_setup (formats_test.methods_test.FormatMethodsTestCase) ... ok test_teardown (formats_test.methods_test.FormatMethodsTestCase) ... ok test_create (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_setup (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_create (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_destroy (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_setup (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_teardown (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_create (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_destroy (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_setup (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_teardown (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_create (formats_test.methods_test.SwapMethodsTestCase) ... ok test_destroy (formats_test.methods_test.SwapMethodsTestCase) ... ok test_setup (formats_test.methods_test.SwapMethodsTestCase) ... ok test_teardown (formats_test.methods_test.SwapMethodsTestCase) ... ok test_create (formats_test.methods_test.XFSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.XFSMethodsTestCase) ... ok test_setup (formats_test.methods_test.XFSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.XFSMethodsTestCase) ... ok test_biggest_overhead_FS (formats_test.misc_test.FSOverheadTestCase) ... ok test_required_size_FS (formats_test.misc_test.FSOverheadTestCase) ... ok test_mount_selinux_ext2fs (formats_test.selinux_test.SELinuxContextTestCase) Test of correct selinux context parameter value when mounting ext2 ... skipped 'SELinux disabled.' test_mount_selinux_xfs (formats_test.selinux_test.SELinuxContextTestCase) Test of correct selinux context parameter value when mounting XFS ... skipped 'SELinux disabled.' test_reset_uuid (formats_test.uuid_test.Ext2FSAfterTestCase) Create the filesystem with random UUID and reset it later. ... ok test_set_invalid_uuid_later (formats_test.uuid_test.Ext2FSAfterTestCase) Create the filesystem and try to reassign an invalid UUID later. ... ok test_set_uuid_later (formats_test.uuid_test.Ext2FSAfterTestCase) Create the filesystem with random UUID and reassign later. ... ok test_set_invalid_uuid (formats_test.uuid_test.Ext2FSTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.Ext2FSTestCase) Create the filesystem with a valid UUID. ... ok test_set_invalid_uuid (formats_test.uuid_test.FATFSTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.FATFSTestCase) Create the filesystem with a valid UUID. ... ok test_reset_uuid (formats_test.uuid_test.HFSPlusTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem hfs+' test_set_invalid_uuid_later (formats_test.uuid_test.HFSPlusTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem hfs+' test_set_uuid_later (formats_test.uuid_test.HFSPlusTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem hfs+' test_generate_new_uuid (formats_test.uuid_test.InitializationTestCase) Test that newly generated UUIDs are considered valid ... ok test_uuids (formats_test.uuid_test.InitializationTestCase) Initialize some filesystems with valid and invalid UUIDs. ... ok test_reset_uuid (formats_test.uuid_test.JFSTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem jfs' test_set_invalid_uuid_later (formats_test.uuid_test.JFSTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem jfs' test_set_uuid_later (formats_test.uuid_test.JFSTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem jfs' test_reset_uuid (formats_test.uuid_test.NTFSTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem ntfs' test_set_invalid_uuid_later (formats_test.uuid_test.NTFSTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem ntfs' test_set_uuid_later (formats_test.uuid_test.NTFSTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem ntfs' test_reset_uuid (formats_test.uuid_test.ReiserFSAfterTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem reiserfs' test_set_invalid_uuid_later (formats_test.uuid_test.ReiserFSAfterTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem reiserfs' test_set_uuid_later (formats_test.uuid_test.ReiserFSAfterTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem reiserfs' test_set_invalid_uuid (formats_test.uuid_test.ReiserFSTestCase) Create the filesystem with an invalid UUID. ... skipped 'can not create filesystem reiserfs' test_set_uuid (formats_test.uuid_test.ReiserFSTestCase) Create the filesystem with a valid UUID. ... skipped 'can not create filesystem reiserfs' test_set_invalid_uuid (formats_test.uuid_test.SwapSpaceTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.SwapSpaceTestCase) Create the filesystem with a valid UUID. ... ok test_reset_uuid (formats_test.uuid_test.XFSAfterTestCase) Create the filesystem with random UUID and reset it later. ... ok test_set_invalid_uuid_later (formats_test.uuid_test.XFSAfterTestCase) Create the filesystem and try to reassign an invalid UUID later. ... ok test_set_uuid_later (formats_test.uuid_test.XFSAfterTestCase) Create the filesystem with random UUID and reassign later. ... ok test_set_invalid_uuid (formats_test.uuid_test.XFSTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.XFSTestCase) Create the filesystem with a valid UUID. ... ok test_device_parents (parentlist_test.ParentListTestCase) Verify that Device.parents functions as expected. ... ok test_parent_list (parentlist_test.ParentListTestCase) ... ok test_disk_tags (partitioning_test.DiskTagsTestCase) ... ok test_explicit_extended_partitions (partitioning_test.ExtendedPartitionTestCase) Verify that explicitly requested extended partitions work. ... skipped 'disabled until it can be converted to run in a vm' test_implicit_extended_partitions (partitioning_test.ExtendedPartitionTestCase) Verify management of implicitly requested extended partition. ... skipped 'disabled until it can be converted to run in a vm' test_implicit_extended_partitions_installer_mode (partitioning_test.ExtendedPartitionTestCase) ... skipped 'disabled until it can be converted to run in a vm' test_add_partition (partitioning_test.PartitioningTestCase) ... ok test_align_free_regions (partitioning_test.PartitioningTestCase) ... ok test_chunk (partitioning_test.PartitioningTestCase) ... ok test_msdos_disk_chunk1 (partitioning_test.PartitioningTestCase) ... ok test_msdos_disk_chunk2 (partitioning_test.PartitioningTestCase) ... ok test_next_partition_type (partitioning_test.PartitioningTestCase) ... ok test_vgchunk (partitioning_test.PartitioningTestCase) ... ok test_vgchunk_with_cache (partitioning_test.PartitioningTestCase) ... ok test_vgchunk_with_cache_pvfree (partitioning_test.PartitioningTestCase) ... ok test_get_helper (populator_test.AppleBootFormatPopulatorTestCase) ... ok test_match (populator_test.AppleBootFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.BootFormatPopulatorTestCase) ... ok test_match (populator_test.BootFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.DMDevicePopulatorTestCase) Test get_device_helper for dm devices. ... ok test_match (populator_test.DMDevicePopulatorTestCase) Test matching of dm device populator. ... ok test_run (populator_test.DMDevicePopulatorTestCase) Test dm device populator. ... ok test_get_helper (populator_test.DiskDevicePopulatorTestCase) Test get_device_helper for disks. ... ok test_match (populator_test.DiskDevicePopulatorTestCase) Test matching of disk device populator. ... ok test_run (populator_test.DiskDevicePopulatorTestCase) Test disk device populator. ... ok test_get_helper (populator_test.DiskLabelPopulatorTestCase) Test get_format_helper for disklabels. ... ok test_match (populator_test.DiskLabelPopulatorTestCase) Test matching for disklabel format populator. ... ok test_get_helper (populator_test.EFIFormatPopulatorTestCase) ... ok test_match (populator_test.EFIFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.Ext4PopulatorTestCase) ... ok test_match (populator_test.Ext4PopulatorTestCase) ... ok test_run (populator_test.Ext4PopulatorTestCase) ... ok test_get_helper (populator_test.FormatPopulatorTestCase) ... ok test_match (populator_test.FormatPopulatorTestCase) ... ok test_run (populator_test.FormatPopulatorTestCase) ... ok test_get_helper (populator_test.HFSPopulatorTestCase) ... ok test_match (populator_test.HFSPopulatorTestCase) ... ok test_run (populator_test.HFSPopulatorTestCase) ... ok test_get_helper (populator_test.LVMDevicePopulatorTestCase) Test get_device_helper for lvm devices. ... ok test_match (populator_test.LVMDevicePopulatorTestCase) Test matching of lvm device populator. ... ok test_run (populator_test.LVMDevicePopulatorTestCase) Test lvm device populator. ... ok test_get_helper (populator_test.LVMFormatPopulatorTestCase) ... ok test_match (populator_test.LVMFormatPopulatorTestCase) ... ok test_run (populator_test.LVMFormatPopulatorTestCase) Test lvm format populator. ... ok test_get_helper (populator_test.LoopDevicePopulatorTestCase) Test get_device_helper for loop devices. ... ok test_match (populator_test.LoopDevicePopulatorTestCase) Test matching of loop device populator. ... ok test_run (populator_test.LoopDevicePopulatorTestCase) Test loop device populator. ... ok test_get_helper (populator_test.MDDevicePopulatorTestCase) Test get_device_helper for md arrays. ... ok test_match (populator_test.MDDevicePopulatorTestCase) Test matching of md device populator. ... ok test_run (populator_test.MDDevicePopulatorTestCase) Test md device populator. ... ok test_get_helper (populator_test.MDFormatPopulatorTestCase) ... ok test_match (populator_test.MDFormatPopulatorTestCase) ... ok test_run (populator_test.MDFormatPopulatorTestCase) Test md format populator. ... ok test_get_helper (populator_test.MacEFIFormatPopulatorTestCase) ... ok test_match (populator_test.MacEFIFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.MultipathDevicePopulatorTestCase) Test get_device_helper for multipaths. ... ok test_match (populator_test.MultipathDevicePopulatorTestCase) Test matching of multipath device populator. ... ok test_run (populator_test.MultipathDevicePopulatorTestCase) Test multipath device populator. ... ok test_get_helper (populator_test.NVDIMMNamespaceDevicePopulatorTestCase) Test get_device_helper for NVDIMM namespaces. ... ok test_match (populator_test.NVDIMMNamespaceDevicePopulatorTestCase) Test matching of NVDIMM namespace device populator. ... ok test_run (populator_test.NVDIMMNamespaceDevicePopulatorTestCase) Test disk device populator. ... ok test_get_helper (populator_test.OpticalDevicePopulatorTestCase) Test get_device_helper for optical devices. ... ok test_match (populator_test.OpticalDevicePopulatorTestCase) Test matching of optical device populator. ... ok test_run (populator_test.OpticalDevicePopulatorTestCase) Test optical device populator. ... ok test_get_helper (populator_test.PartitionDevicePopulatorTestCase) Test get_device_helper for partitions. ... ok test_match (populator_test.PartitionDevicePopulatorTestCase) Test matching for partition device populator. ... ok test_run (populator_test.PartitionDevicePopulatorTestCase) Test partition device populator. ... ok test_get_helper (populator_test.SwapPopulatorTestCase) ... ok test_match (populator_test.SwapPopulatorTestCase) ... ok test_run (populator_test.SwapPopulatorTestCase) ... ok test_get_helper (populator_test.VFATPopulatorTestCase) ... ok test_match (populator_test.VFATPopulatorTestCase) ... ok test_run (populator_test.VFATPopulatorTestCase) ... ok test_get_helper (populator_test.XFSPopulatorTestCase) ... ok test_match (populator_test.XFSPopulatorTestCase) ... ok test_run (populator_test.XFSPopulatorTestCase) ... ok test_convert_to_precision (size_test.SizeTestCase) ... ok test_convert_to_with_size (size_test.SizeTestCase) ... ok test_ensure_percent_reserve (size_test.SizeTestCase) ... ok test_exceptions (size_test.SizeTestCase) ... ok test_floating_point_str (size_test.SizeTestCase) ... ok test_human_readable (size_test.SizeTestCase) ... ok test_human_readable_fractional_quantities (size_test.SizeTestCase) ... ok test_leading_zero (size_test.SizeTestCase) ... ok test_no_units_in_string (size_test.SizeTestCase) ... ok test_partial_bytes (size_test.SizeTestCase) ... ok test_pickling (size_test.SizeTestCase) ... ok test_scientific_notation (size_test.SizeTestCase) ... ok test_segative (size_test.SizeTestCase) ... ok test_white_space (size_test.SizeTestCase) ... ok test_human_readable_translation (size_test.TranslationTestCase) ... skipped "libbytesize's translations are not available, cannot test now" test_round_to_nearest (size_test.TranslationTestCase) ... skipped "libbytesize's translations are not available, cannot test now" test_translated (size_test.TranslationTestCase) ... skipped "libbytesize's translations are not available, cannot test now" test_arithmetic (size_test.UtilityMethodsTestCase) ... ok test_udev_device_is_disk_md (udev_test.UdevTest) ... ok test_udev_get_device (udev_test.UdevTest) ... ok test_udev_settle (udev_test.UdevTest) ... ok test_udev_trigger (udev_test.UdevTest) ... ok test_recursive_remove (unsupported_disklabel_test.UnsupportedDiskLabelTestCase) ... ok test_unsupported_disklabel (unsupported_disklabel_test.UnsupportedDiskLabelTestCase) Test behavior of partitions on unsupported disklabels. ... ok test_dependency_guard (util_test.DependencyGuardTestCase) ... ok test_dedup_list (util_test.MiscTest) ... ok test_detect_virt (util_test.MiscTest) ... ok test_power_of_two (util_test.MiscTest) ... ok test_default_namedtuple (util_test.TestDefaultNamedtuple) ... ok test_requires_property (util_test.TestRequiresProperty) ... ok ```
``` ====================================================================== ERROR: test_collect_edd_data_absurd_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 243, in test_collect_edd_data_absurd_virt lib.assertVerboseEqual(len(edd_dict), 6) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== ERROR: test_collect_edd_data_sata_usb (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 149, in test_collect_edd_data_sata_usb lib.assertVerboseEqual(len(edd_dict), 2) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== ERROR: test_get_edd_dict_absurd_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 321, in test_get_edd_dict_absurd_virt lib.assertVerboseEqual(len(edd_dict), 6) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== ERROR: test_get_edd_dict_sata_usb (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 182, in test_get_edd_dict_sata_usb lib.assertVerboseEqual(len(edd_dict), 2) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== FAIL: test_collect_edd_data_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 579, in test_collect_edd_data_bad_sata_virt self.check_logs(debugs=debugs) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') ====================================================================== FAIL: test_collect_edd_data_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 704, in test_collect_edd_data_mostly_fixed_virt self.check_logs(debugs=debugs) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ====================================================================== FAIL: test_collect_edd_data_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 437, in test_collect_edd_data_strawberry_mountain self.check_logs(debugs=debugs) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ====================================================================== FAIL: test_collect_mbrs_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 550, in test_collect_mbrs_bad_sata_virt self.check_logs(infos=infos) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 99, in check_logs check(infos, edd.log.info) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: log has: call('edd: collected mbr signatures: %s', {}) expected: call('edd: collected mbr signatures: %s', {'sda': '0xe3bf124b', 'sdb': '0x7dfff0db', 'sdc': '0x86531966'}) ====================================================================== FAIL: test_collect_mbrs_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 663, in test_collect_mbrs_mostly_fixed_virt self.check_logs(infos=infos) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 99, in check_logs check(infos, edd.log.info) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: log has: call('edd: collected mbr signatures: %s', {}) expected: call('edd: collected mbr signatures: %s', {'sda': '0xe3bf124b', 'sdb': '0x7dfff0db', 'sdc': '0x648873aa', 'vda': '0x86531966'}) ====================================================================== FAIL: test_collect_mbrs_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 394, in test_collect_mbrs_strawberry_mountain self.check_logs(infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 99, in check_logs check(infos, edd.log.info) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: log has: call('edd: collected mbr signatures: %s', {}) expected: call('edd: MBR signature on %s is zero. new disk image?', 'sda') call('edd: MBR signature on %s is zero. new disk image?', 'sdb') call('edd: collected mbr signatures: %s', {'sdc': '0x00033091', 'sdd': '0x91271645'}) ====================================================================== FAIL: test_get_edd_dict_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 635, in test_get_edd_dict_bad_sata_virt self.check_logs(debugs=debugs, infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: data extracted from 0x%x:%r', 128, ) call('edd: data extracted from 0x%x:%r', 129, ) call('edd: data extracted from 0x%x:%r', 130, ) call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') ====================================================================== FAIL: test_get_edd_dict_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 783, in test_get_edd_dict_mostly_fixed_virt self.check_logs(debugs=debugs, infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: data extracted from 0x%x:%r', 128, ) call('edd: data extracted from 0x%x:%r', 129, ) call('edd: data extracted from 0x%x:%r', 130, ) call('edd: data extracted from 0x%x:%r', 131, ) call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ====================================================================== FAIL: test_get_edd_dict_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 525, in test_get_edd_dict_strawberry_mountain self.check_logs(debugs=debugs, infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: data extracted from 0x%x:%r', 128, ) call('edd: data extracted from 0x%x:%r', 129, ) call('edd: data extracted from 0x%x:%r', 130, ) call('edd: data extracted from 0x%x:%r', 131, ) call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ---------------------------------------------------------------------- Ran 730 tests in 456.086s FAILED (failures=9, errors=4, skipped=326) autopkgtest [07:50:30]: test command1: -----------------------] autopkgtest [07:50:37]: test command1: - - - - - - - - - - results - - - - - - - - - - command1 FAIL non-zero exit status 1 autopkgtest [07:50:37]: test command1: - - - - - - - - - - stderr - - - - - - - - - - ```
``` test_device_configuration (action_test.ConfigurationActionsTest) ... ok test_format_configuration (action_test.ConfigurationActionsTest) ... ok test_action_apply_cancel (action_test.DeviceActionTestCase) ... skipped 'some unsupported format classes required for this test' test_action_creation (action_test.DeviceActionTestCase) Verify correct operation of action class constructors. ... skipped 'some unsupported format classes required for this test' test_action_dependencies (action_test.DeviceActionTestCase) Verify correct functioning of action dependencies. ... skipped 'some unsupported format classes required for this test' test_action_obsoletes (action_test.DeviceActionTestCase) Verify correct operation of DeviceAction.obsoletes. ... skipped 'some unsupported format classes required for this test' test_action_pruning (action_test.DeviceActionTestCase) Verify correct functioning of action pruning. ... skipped 'some unsupported format classes required for this test' test_action_registration (action_test.DeviceActionTestCase) Verify correct operation of action registration and cancelling. ... skipped 'some unsupported format classes required for this test' test_action_sorting (action_test.DeviceActionTestCase) Verify correct functioning of action sorting. ... skipped 'some unsupported format classes required for this test' test_actions (action_test.DeviceActionTestCase) Verify correct management of actions. ... skipped 'some unsupported format classes required for this test' test_container_actions (action_test.DeviceActionTestCase) ... skipped 'some unsupported format classes required for this test' test_lv_from_lvs_actions (action_test.DeviceActionTestCase) ... skipped 'some unsupported format classes required for this test' test_properties (dbus_test.DBusActionTestCase) ... ok test_Commit (dbus_test.DBusBlivetTestCase) ... ok test_Factory (dbus_test.DBusBlivetTestCase) ... ok test_InitializeDisk (dbus_test.DBusBlivetTestCase) ... ok test_ListDevices (dbus_test.DBusBlivetTestCase) Verify that ListDevices returns what it should. ... ok test_RemoveDevice (dbus_test.DBusBlivetTestCase) ... ok test_Reset (dbus_test.DBusBlivetTestCase) Verify that Reset calls the underlying Blivet's reset method. ... ok test_properties (dbus_test.DBusDeviceTestCase) ... ok test_properties (dbus_test.DBusFormatTestCase) ... ok test_properties (dbus_test.DBusObjectTestCase) ... ok test_default_factory_type (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_device_factory (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_factory_defaults (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_get_free_disk_space (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_normalize_size (devicefactory_test.DeviceFactoryTestCase) ... skipped 'abstract base class' test_default_factory_type (devicefactory_test.LVMFactoryTestCase) ... ok test_device_factory (devicefactory_test.LVMFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.LVMFactoryTestCase) ... ok test_get_container (devicefactory_test.LVMFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.LVMFactoryTestCase) ... ok test_normalize_size (devicefactory_test.LVMFactoryTestCase) ... ok test_default_factory_type (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_device_factory (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_get_container (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_normalize_size (devicefactory_test.LVMThinPFactoryTestCase) ... ok test_default_factory_type (devicefactory_test.MDFactoryTestCase) ... ok test_device_factory (devicefactory_test.MDFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.MDFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.MDFactoryTestCase) ... ok test_mdfactory (devicefactory_test.MDFactoryTestCase) ... ok test_normalize_size (devicefactory_test.MDFactoryTestCase) ... ok test_bug1178884 (devicefactory_test.PartitionFactoryTestCase) ... ok test_default_factory_type (devicefactory_test.PartitionFactoryTestCase) ... ok test_device_factory (devicefactory_test.PartitionFactoryTestCase) ... ok test_factory_defaults (devicefactory_test.PartitionFactoryTestCase) ... ok test_get_free_disk_space (devicefactory_test.PartitionFactoryTestCase) ... ok test_normalize_size (devicefactory_test.PartitionFactoryTestCase) ... ok test_lsm_dependency_guard (devicelibs_test.disk_test.DiskLibTestCase) Validate handling of missing lsm dependency. ... ok test_lsm_error_handling (devicelibs_test.disk_test.DiskLibTestCase) Validate handling of potential lsm errors. ... ok test_update_volume_list (devicelibs_test.disk_test.DiskLibTestCase) Validate conversion of lsm data. ... ok test_collect_edd_data_absurd_virt (devicelibs_test.edd_test.EddTestCase) ... ERROR test_collect_edd_data_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_edd_data_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_edd_data_sata_usb (devicelibs_test.edd_test.EddTestCase) ... ERROR test_collect_edd_data_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_mbrs_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_mbrs_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_collect_mbrs_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ... FAIL test_get_edd_dict_absurd_virt (devicelibs_test.edd_test.EddTestCase) ... ERROR test_get_edd_dict_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_get_edd_dict_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ... FAIL test_get_edd_dict_sata_usb (devicelibs_test.edd_test.EddTestCase) ... ERROR test_get_edd_dict_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ... FAIL test_mdraid (devicelibs_test.mdraid_test.MDRaidTestCase) ... ok test_raid (devicelibs_test.raid_test.RaidTestCase) ... ok test_dependencies (devices_test.dependencies_test.DeviceDependenciesTestCase) ... ok test_weak_dependencies (devices_test.dependencies_test.MissingWeakDependenciesTestCase) ... skipped 'Missing libblockdev plugins needed from weak dependencies test.' test_availability_mdraidplugin (devices_test.dependencies_test.MockingDeviceDependenciesTestCase1) ... ok test_dependencies_handling (devices_test.dependencies_test.MockingDeviceDependenciesTestCase2) ... ok test_create (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.DiskDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.LVMLogicalVolumeDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.LVMVolumeGroupDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.MDRaidArrayDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.PartitionDeviceMethodsTestCase) ... ok test_create (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_destroy (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_setup (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_teardown (devices_test.device_methods_test.StorageDeviceMethodsTestCase) ... ok test_logical_volume (devices_test.device_names_test.DeviceNameTestCase) ... ok test_storage_device (devices_test.device_names_test.DeviceNameTestCase) ... ok test_volume_group (devices_test.device_names_test.DeviceNameTestCase) ... ok test_packages (devices_test.device_packages_test.DevicePackagesTestCase) ... ok test_btrfsdevice_init (devices_test.device_properties_test.BTRFSDeviceTestCase) Tests the state of a BTRFSDevice after initialization. ... ok test_btrfsdevice_methods (devices_test.device_properties_test.BTRFSDeviceTestCase) Test for method calls on initialized BTRFS Devices. ... ok test_btrfssnap_shot_device_init (devices_test.device_properties_test.BTRFSDeviceTestCase) ... ok test_resizable (devices_test.device_properties_test.BTRFSDeviceTestCase) Test resizable property of unformatted devices. ... ok test_resizable (devices_test.device_properties_test.DeviceStateTestCase) Test resizable property of unformatted devices. ... ok test_lvmlogical_volume_device_init (devices_test.device_properties_test.LVMLogicalVolumeDeviceTestCase) ... ok test_lvmlogical_volume_device_init_cached (devices_test.device_properties_test.LVMLogicalVolumeDeviceTestCase) ... ok test_resizable (devices_test.device_properties_test.LVMLogicalVolumeDeviceTestCase) Test resizable property of unformatted devices. ... ok test_mdraid_array_device_init (devices_test.device_properties_test.MDRaidArrayDeviceTestCase) Tests the state of a MDRaidArrayDevice after initialization. ... ok test_mdraid_array_device_methods (devices_test.device_properties_test.MDRaidArrayDeviceTestCase) Test for method calls on initialized MDRaidDevices. ... ok test_resizable (devices_test.device_properties_test.MDRaidArrayDeviceTestCase) Test resizable property of unformatted devices. ... ok test_disk_raid_properties (devices_test.disk_test.DiskDeviceRAIDPropertiesTestCase) ... ok test_new_lv_from_lvs (devices_test.lvm_test.BlivetNewLVMDeviceTest) ... ok test_new_lv_from_non_existing_lvs (devices_test.lvm_test.BlivetNewLVMDeviceTest) ... ok test_lvm_inconsistent_sector_size (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_insuf_seg_type (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_metadata_size (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_mirror (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_pv_free_cached (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_pv_free_linear (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_raid_level (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_segtype_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_segtype_pv_free (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvm_logical_volume_with_pvs_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmcached_logical_volume_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmcached_two_logical_volume_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmsnap_shot_device_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_lvmthin_snap_shot_device_init (devices_test.lvm_test.LVMDeviceTest) ... ok test_skip_activate (devices_test.lvm_test.LVMDeviceTest) ... ok test_target_size (devices_test.lvm_test.LVMDeviceTest) ... ok test_vg_is_empty (devices_test.lvm_test.LVMDeviceTest) ... ok test_type_specific_calls (devices_test.lvm_test.TypeSpecificCallsTest) ... ok test_chunk_size1 (devices_test.md_test.MDRaidArrayDeviceTest) ... ok test_chunk_size2 (devices_test.md_test.MDRaidArrayDeviceTest) ... ok test_net_dev_setting (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option setting after format assignment. ... ok test_net_dev_update (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option setting after device creation. ... ok test_net_dev_update_remove (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option is removed after removing the netdev parent. ... ok test_net_device_manual (devices_test.network_test.NetDevMountOptionTestCase) Verify netdev mount option is not removed if explicitly set by the user. ... ok test_ctor_parted_partition_error_handling (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_disk_is_empty (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_extended_min_size (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_min_max_size_alignment (devices_test.partition_test.PartitionDeviceTestCase) ... skipped 'not working on Ubuntu' test_target_size (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_weight_1 (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_weight_2 (devices_test.partition_test.PartitionDeviceTestCase) ... ok test_size_getter (devices_test.size_test.LUKSDeviceSizeTest) ... ok test_size_setter (devices_test.size_test.LUKSDeviceSizeTest) ... ok test_size_getter (devices_test.size_test.StorageDeviceSizeTest) ... ok test_size_setter (devices_test.size_test.StorageDeviceSizeTest) ... ok test_auto_tags (devices_test.tags_test.DeviceTagsTest) ... ok test_tags (devices_test.tags_test.DeviceTagsTest) ... ok test_add_device (devicetree_test.DeviceTreeTestCase) ... ok test_device_name (devicetree_test.DeviceTreeTestCase) ... ok test_get_device_by_name (devicetree_test.DeviceTreeTestCase) ... ok test_get_related_disks (devicetree_test.DeviceTreeTestCase) ... ok test_hide_ignored_disks (devicetree_test.DeviceTreeTestCase) ... ok test_ignored_disk_tags (devicetree_test.DeviceTreeTestCase) ... ok test_recursive_remove (devicetree_test.DeviceTreeTestCase) ... ok test_remove_device (devicetree_test.DeviceTreeTestCase) ... ok test_reset (devicetree_test.DeviceTreeTestCase) ... ok test_resolve_device (devicetree_test.DeviceTreeTestCase) ... ok testEventMask (events_test.EventManagerTest) ... ok test_formats (formats_test.device_test.DeviceFormatTestCase) ... ok test_value (formats_test.device_test.DeviceValueTestCase) ... ok test_best_label_type (formats_test.disklabel_test.DiskLabelTestCase) 1. is always in _disklabel_types ... ok test_get_alignment (formats_test.disklabel_test.DiskLabelTestCase) ... ok test_label_type_size_check (formats_test.disklabel_test.DiskLabelTestCase) ... ok test_platform_label_types (formats_test.disklabel_test.DiskLabelTestCase) ... ok test_creation (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create filesystem Apple Bootstrap' test_instantiation (formats_test.fs_test.AppleBootstrapFSTestCase) ... ok test_labeling (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not label filesystem Apple Bootstrap' test_mounting (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create filesystem Apple Bootstrap' test_mountpoint (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create or mount filesystem Apple Bootstrap' test_no_explicit_target_size (formats_test.fs_test.AppleBootstrapFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.AppleBootstrapFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not label filesystem Apple Bootstrap' test_resize (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'can not create filesystem Apple Bootstrap' test_shrink (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.AppleBootstrapFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.BTRFSTestCase) ... ok test_instantiation (formats_test.fs_test.BTRFSTestCase) ... ok test_labeling (formats_test.fs_test.BTRFSTestCase) ... skipped 'can not label filesystem btrfs' test_mounting (formats_test.fs_test.BTRFSTestCase) ... skipped 'no mounting filesystem btrfs' test_mountpoint (formats_test.fs_test.BTRFSTestCase) ... skipped 'no mounting filesystem btrfs' test_no_explicit_target_size (formats_test.fs_test.BTRFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.BTRFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.BTRFSTestCase) ... skipped 'can not label filesystem btrfs' test_resize (formats_test.fs_test.BTRFSTestCase) ... ok test_shrink (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.BTRFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create filesystem bind' test_instantiation (formats_test.fs_test.BindFSTestCase) ... ok test_labeling (formats_test.fs_test.BindFSTestCase) ... skipped 'can not label filesystem bind' test_mounting (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create filesystem bind' test_mountpoint (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create or mount filesystem bind' test_no_explicit_target_size (formats_test.fs_test.BindFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.BindFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.BindFSTestCase) ... skipped 'can not label filesystem bind' test_resize (formats_test.fs_test.BindFSTestCase) ... skipped 'can not create filesystem bind' test_shrink (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.BindFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.DevPtsFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.DevPtsFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.DevPtsFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.EFIFSTestCase) ... ok test_instantiation (formats_test.fs_test.EFIFSTestCase) ... ok test_labeling (formats_test.fs_test.EFIFSTestCase) ... ok test_mounting (formats_test.fs_test.EFIFSTestCase) ... ok test_mountpoint (formats_test.fs_test.EFIFSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.EFIFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.EFIFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.EFIFSTestCase) ... ok test_resize (formats_test.fs_test.EFIFSTestCase) ... ok test_shrink (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.EFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.Ext2FSTestCase) ... ok test_instantiation (formats_test.fs_test.Ext2FSTestCase) ... ok test_labeling (formats_test.fs_test.Ext2FSTestCase) ... ok test_mounting (formats_test.fs_test.Ext2FSTestCase) ... ok test_mountpoint (formats_test.fs_test.Ext2FSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.Ext2FSTestCase) Because _target_size has not been set, resize sets to min size. ... ok test_no_explicit_target_size2 (formats_test.fs_test.Ext2FSTestCase) Because _target_size has been set to size in constructor the ... ok test_relabeling (formats_test.fs_test.Ext2FSTestCase) ... ok test_resize (formats_test.fs_test.Ext2FSTestCase) ... ok test_shrink (formats_test.fs_test.Ext2FSTestCase) ... ok test_too_big (formats_test.fs_test.Ext2FSTestCase) ... ok test_too_big2 (formats_test.fs_test.Ext2FSTestCase) ... ok test_too_small (formats_test.fs_test.Ext2FSTestCase) ... ok test_creation (formats_test.fs_test.Ext3FSTestCase) ... ok test_instantiation (formats_test.fs_test.Ext3FSTestCase) ... ok test_labeling (formats_test.fs_test.Ext3FSTestCase) ... ok test_mounting (formats_test.fs_test.Ext3FSTestCase) ... ok test_mountpoint (formats_test.fs_test.Ext3FSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.Ext3FSTestCase) Because _target_size has not been set, resize sets to min size. ... ok test_no_explicit_target_size2 (formats_test.fs_test.Ext3FSTestCase) Because _target_size has been set to size in constructor the ... ok test_relabeling (formats_test.fs_test.Ext3FSTestCase) ... ok test_resize (formats_test.fs_test.Ext3FSTestCase) ... ok test_shrink (formats_test.fs_test.Ext3FSTestCase) ... ok test_too_big (formats_test.fs_test.Ext3FSTestCase) ... ok test_too_big2 (formats_test.fs_test.Ext3FSTestCase) ... ok test_too_small (formats_test.fs_test.Ext3FSTestCase) ... ok test_creation (formats_test.fs_test.Ext4FSTestCase) ... ok test_instantiation (formats_test.fs_test.Ext4FSTestCase) ... ok test_labeling (formats_test.fs_test.Ext4FSTestCase) ... ok test_mounting (formats_test.fs_test.Ext4FSTestCase) ... ok test_mountpoint (formats_test.fs_test.Ext4FSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.Ext4FSTestCase) Because _target_size has not been set, resize sets to min size. ... ok test_no_explicit_target_size2 (formats_test.fs_test.Ext4FSTestCase) Because _target_size has been set to size in constructor the ... ok test_relabeling (formats_test.fs_test.Ext4FSTestCase) ... ok test_resize (formats_test.fs_test.Ext4FSTestCase) ... ok test_shrink (formats_test.fs_test.Ext4FSTestCase) ... ok test_too_big (formats_test.fs_test.Ext4FSTestCase) ... ok test_too_big2 (formats_test.fs_test.Ext4FSTestCase) ... ok test_too_small (formats_test.fs_test.Ext4FSTestCase) ... ok test_creation (formats_test.fs_test.FATFSTestCase) ... ok test_instantiation (formats_test.fs_test.FATFSTestCase) ... ok test_labeling (formats_test.fs_test.FATFSTestCase) ... ok test_mounting (formats_test.fs_test.FATFSTestCase) ... ok test_mountpoint (formats_test.fs_test.FATFSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.FATFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.FATFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.FATFSTestCase) ... ok test_resize (formats_test.fs_test.FATFSTestCase) ... ok test_shrink (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.FATFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_instantiation (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_labeling (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_mounting (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_mountpoint (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_no_explicit_target_size (formats_test.fs_test.GFS2TestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create GFS2 filesystem.' test_no_explicit_target_size2 (formats_test.fs_test.GFS2TestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create GFS2 filesystem.' test_relabeling (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_resize (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_shrink (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_too_big (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_too_big2 (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_too_small (formats_test.fs_test.GFS2TestCase) ... skipped 'Unable to create GFS2 filesystem.' test_creation (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create filesystem hfs+' test_instantiation (formats_test.fs_test.HFSPlusTestCase) ... ok test_labeling (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not label filesystem hfs+' test_mounting (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create filesystem hfs+' test_mountpoint (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create or mount filesystem hfs+' test_no_explicit_target_size (formats_test.fs_test.HFSPlusTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.HFSPlusTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not label filesystem hfs+' test_resize (formats_test.fs_test.HFSPlusTestCase) ... skipped 'can not create filesystem hfs+' test_shrink (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.HFSPlusTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.HFSTestCase) ... skipped 'can not create filesystem hfs' test_instantiation (formats_test.fs_test.HFSTestCase) ... ok test_labeling (formats_test.fs_test.HFSTestCase) ... skipped 'can not label filesystem hfs' test_mounting (formats_test.fs_test.HFSTestCase) ... skipped 'can not create filesystem hfs' test_mountpoint (formats_test.fs_test.HFSTestCase) ... skipped 'can not create or mount filesystem hfs' test_no_explicit_target_size (formats_test.fs_test.HFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.HFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.HFSTestCase) ... skipped 'can not label filesystem hfs' test_resize (formats_test.fs_test.HFSTestCase) ... skipped 'can not create filesystem hfs' test_shrink (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.HFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.Iso9660FS) ... skipped 'can not create filesystem iso9660' test_instantiation (formats_test.fs_test.Iso9660FS) ... ok test_labeling (formats_test.fs_test.Iso9660FS) ... skipped 'can not label filesystem iso9660' test_mounting (formats_test.fs_test.Iso9660FS) ... skipped 'can not create filesystem iso9660' test_mountpoint (formats_test.fs_test.Iso9660FS) ... skipped 'can not create or mount filesystem iso9660' test_no_explicit_target_size (formats_test.fs_test.Iso9660FS) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.Iso9660FS) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.Iso9660FS) ... skipped 'can not label filesystem iso9660' test_resize (formats_test.fs_test.Iso9660FS) ... skipped 'can not create filesystem iso9660' test_shrink (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.Iso9660FS) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.JFSTestCase) ... skipped 'can not create filesystem jfs' test_instantiation (formats_test.fs_test.JFSTestCase) ... ok test_labeling (formats_test.fs_test.JFSTestCase) ... skipped 'can not label filesystem jfs' test_mounting (formats_test.fs_test.JFSTestCase) ... skipped 'can not create filesystem jfs' test_mountpoint (formats_test.fs_test.JFSTestCase) ... skipped 'can not create or mount filesystem jfs' test_no_explicit_target_size (formats_test.fs_test.JFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.JFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.JFSTestCase) ... skipped 'can not label filesystem jfs' test_resize (formats_test.fs_test.JFSTestCase) ... skipped 'can not create filesystem jfs' test_shrink (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.JFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create filesystem Linux HFS+ ESP' test_instantiation (formats_test.fs_test.MacEFIFSTestCase) ... ok test_labeling (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not label filesystem Linux HFS+ ESP' test_mounting (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create filesystem Linux HFS+ ESP' test_mountpoint (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create or mount filesystem Linux HFS+ ESP' test_no_explicit_target_size (formats_test.fs_test.MacEFIFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.MacEFIFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not label filesystem Linux HFS+ ESP' test_resize (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'can not create filesystem Linux HFS+ ESP' test_shrink (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.MacEFIFSTestCase) ... skipped 'Not checking resize for this test category.' test_creation (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_instantiation (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_labeling (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_mounting (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_mountpoint (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size (formats_test.fs_test.NFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size2 (formats_test.fs_test.NFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create because device fails device_check().' test_relabeling (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_resize (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_shrink (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big2 (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_too_small (formats_test.fs_test.NFSTestCase) ... skipped 'Unable to create because device fails device_check().' test_creation (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_instantiation (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_labeling (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_mounting (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_mountpoint (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size (formats_test.fs_test.NFSv4TestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create because device fails device_check().' test_no_explicit_target_size2 (formats_test.fs_test.NFSv4TestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create because device fails device_check().' test_relabeling (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_resize (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_shrink (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_too_big2 (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_too_small (formats_test.fs_test.NFSv4TestCase) ... skipped 'Unable to create because device fails device_check().' test_creation (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_instantiation (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_labeling (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_mounting (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_mountpoint (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_no_explicit_target_size (formats_test.fs_test.NTFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Unable to create because NTFS._formattable is False.' test_no_explicit_target_size2 (formats_test.fs_test.NTFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Unable to create because NTFS._formattable is False.' test_relabeling (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_resize (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_shrink (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_too_big (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_too_big2 (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_too_small (formats_test.fs_test.NTFSTestCase) ... skipped 'Unable to create because NTFS._formattable is False.' test_creation (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.NoDevFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.NoDevFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.NoDevFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.ProcFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.ProcFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.ProcFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create filesystem reiserfs' test_instantiation (formats_test.fs_test.ReiserFSTestCase) ... ok test_labeling (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not label filesystem reiserfs' test_mounting (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create filesystem reiserfs' test_mountpoint (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create or mount filesystem reiserfs' test_no_explicit_target_size (formats_test.fs_test.ReiserFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.ReiserFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not label filesystem reiserfs' test_resize (formats_test.fs_test.ReiserFSTestCase) ... skipped 'can not create filesystem reiserfs' test_shrink (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.ReiserFSTestCase) ... skipped 'Not checking resize for this test category.' test_resize (formats_test.fs_test.ResizeTmpFSTestCase) ... ok test_shrink (formats_test.fs_test.ResizeTmpFSTestCase) ... ok test_creation (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.SELinuxFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.SELinuxFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.SELinuxFSTestCase) ... skipped 'Too strange to test using this framework.' test_simple (formats_test.fs_test.SimpleTmpFSTestCase) ... ok test_creation (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.SysFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.SysFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.SysFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.TmpFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.TmpFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.TmpFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_instantiation (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_labeling (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_mounting (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_mountpoint (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size (formats_test.fs_test.USBFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Too strange to test using this framework.' test_no_explicit_target_size2 (formats_test.fs_test.USBFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Too strange to test using this framework.' test_relabeling (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_resize (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_shrink (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_big2 (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_too_small (formats_test.fs_test.USBFSTestCase) ... skipped 'Too strange to test using this framework.' test_creation (formats_test.fs_test.XFSTestCase) ... ok test_instantiation (formats_test.fs_test.XFSTestCase) ... ok test_labeling (formats_test.fs_test.XFSTestCase) ... ok test_mounting (formats_test.fs_test.XFSTestCase) ... ok test_mountpoint (formats_test.fs_test.XFSTestCase) ... ok test_no_explicit_target_size (formats_test.fs_test.XFSTestCase) Because _target_size has not been set, resize sets to min size. ... skipped 'Not checking resize for this test category.' test_no_explicit_target_size2 (formats_test.fs_test.XFSTestCase) Because _target_size has been set to size in constructor the ... skipped 'Not checking resize for this test category.' test_relabeling (formats_test.fs_test.XFSTestCase) ... ok test_resize (formats_test.fs_test.XFSTestCase) ... ok test_shrink (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_big2 (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_too_small (formats_test.fs_test.XFSTestCase) ... skipped 'Not checking resize for this test category.' test_formats_methods (formats_test.init_test.FormatsTestCase) ... ok test_creating (formats_test.labeling_test.Ext2FSTestCase) Create the filesystem when passing a valid label. ... ok test_creating_empty (formats_test.labeling_test.Ext2FSTestCase) Create a filesystem with an empty label. ... ok test_creating_none (formats_test.labeling_test.Ext2FSTestCase) Create a filesystem with the label None. ... ok test_labeling (formats_test.labeling_test.Ext2FSTestCase) A sequence of tests of filesystem labeling. ... ok test_creating (formats_test.labeling_test.FATFSTestCase) Create the filesystem when passing a valid label. ... ok test_creating_empty (formats_test.labeling_test.FATFSTestCase) Create a filesystem with an empty label. ... ok test_creating_none (formats_test.labeling_test.FATFSTestCase) Create a filesystem with the label None. ... ok test_labeling (formats_test.labeling_test.FATFSTestCase) A sequence of tests of filesystem labeling. ... ok test_creating (formats_test.labeling_test.HFSPlusTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem hfs+' test_creating_empty (formats_test.labeling_test.HFSPlusTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem hfs+' test_creating_none (formats_test.labeling_test.HFSPlusTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem hfs+' test_labeling (formats_test.labeling_test.HFSPlusTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem hfs+' test_creating (formats_test.labeling_test.HFSTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem hfs' test_creating_empty (formats_test.labeling_test.HFSTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem hfs' test_creating_none (formats_test.labeling_test.HFSTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem hfs' test_labeling (formats_test.labeling_test.HFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem hfs' test_labels (formats_test.labeling_test.InitializationTestCase) Initialize some filesystems with valid and invalid labels. ... ok test_creating (formats_test.labeling_test.JFSTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem jfs' test_creating_empty (formats_test.labeling_test.JFSTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem jfs' test_creating_none (formats_test.labeling_test.JFSTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem jfs' test_labeling (formats_test.labeling_test.JFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem jfs' test_creating_swap_space_empty (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_creating_swap_space_none (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_labeling (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_relabel (formats_test.labeling_test.LabelingSwapSpaceTestCase) ... ok test_creating (formats_test.labeling_test.NTFSTestCase) Create the filesystem when passing a valid label. ... skipped 'Unable to create NTFS filesystem.' test_creating_empty (formats_test.labeling_test.NTFSTestCase) Create a filesystem with an empty label. ... skipped 'Unable to create NTFS filesystem.' test_creating_none (formats_test.labeling_test.NTFSTestCase) Create a filesystem with the label None. ... skipped 'Unable to create NTFS filesystem.' test_labeling (formats_test.labeling_test.NTFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'Unable to create NTFS filesystem.' test_creating (formats_test.labeling_test.ReiserFSTestCase) Create the filesystem when passing a valid label ... skipped 'can not create filesystem reiserfs' test_creating_empty (formats_test.labeling_test.ReiserFSTestCase) Create the filesystem when passing the empty label. ... skipped 'can not create filesystem reiserfs' test_creating_none (formats_test.labeling_test.ReiserFSTestCase) Create the filesystem when passing None ... skipped 'can not create filesystem reiserfs' test_labeling (formats_test.labeling_test.ReiserFSTestCase) A sequence of tests of filesystem labeling. ... skipped 'can not create filesystem reiserfs' test_creating (formats_test.labeling_test.XFSTestCase) Create the filesystem when passing a valid label. ... ok test_creating_empty (formats_test.labeling_test.XFSTestCase) Create a filesystem with an empty label. ... ok test_creating_none (formats_test.labeling_test.XFSTestCase) Create a filesystem with the label None. ... ok test_labeling (formats_test.labeling_test.XFSTestCase) A sequence of tests of filesystem labeling. ... ok test_create_discard_option (formats_test.luks_test.LUKSNodevTestCase) ... ok test_key_size (formats_test.luks_test.LUKSNodevTestCase) ... ok test_resize (formats_test.luks_test.LUKSTestCase) ... ok test_size (formats_test.luks_test.LUKSTestCase) ... ok test_resize (formats_test.lvmpv_test.LVMPVTestCase) ... ok test_size (formats_test.lvmpv_test.LVMPVTestCase) ... ok test_create (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_setup (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.EFIFSMethodsTestCase) ... ok test_create (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_setup (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.Ext4FSMethodsTestCase) ... ok test_create (formats_test.methods_test.FSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.FSMethodsTestCase) ... ok test_setup (formats_test.methods_test.FSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.FSMethodsTestCase) ... ok test_create (formats_test.methods_test.FormatMethodsTestCase) ... ok test_destroy (formats_test.methods_test.FormatMethodsTestCase) ... ok test_setup (formats_test.methods_test.FormatMethodsTestCase) ... ok test_teardown (formats_test.methods_test.FormatMethodsTestCase) ... ok test_create (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_setup (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.LUKSMethodsTestCase) ... ok test_create (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_destroy (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_setup (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_teardown (formats_test.methods_test.LVMPhysicalVolumeMethodsTestCase) ... ok test_create (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_destroy (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_setup (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_teardown (formats_test.methods_test.MDRaidMemberMethodsTestCase) ... ok test_create (formats_test.methods_test.SwapMethodsTestCase) ... ok test_destroy (formats_test.methods_test.SwapMethodsTestCase) ... ok test_setup (formats_test.methods_test.SwapMethodsTestCase) ... ok test_teardown (formats_test.methods_test.SwapMethodsTestCase) ... ok test_create (formats_test.methods_test.XFSMethodsTestCase) ... ok test_destroy (formats_test.methods_test.XFSMethodsTestCase) ... ok test_setup (formats_test.methods_test.XFSMethodsTestCase) ... ok test_teardown (formats_test.methods_test.XFSMethodsTestCase) ... ok test_biggest_overhead_FS (formats_test.misc_test.FSOverheadTestCase) ... ok test_required_size_FS (formats_test.misc_test.FSOverheadTestCase) ... ok test_mount_selinux_ext2fs (formats_test.selinux_test.SELinuxContextTestCase) Test of correct selinux context parameter value when mounting ext2 ... skipped 'SELinux disabled.' test_mount_selinux_xfs (formats_test.selinux_test.SELinuxContextTestCase) Test of correct selinux context parameter value when mounting XFS ... skipped 'SELinux disabled.' test_reset_uuid (formats_test.uuid_test.Ext2FSAfterTestCase) Create the filesystem with random UUID and reset it later. ... ok test_set_invalid_uuid_later (formats_test.uuid_test.Ext2FSAfterTestCase) Create the filesystem and try to reassign an invalid UUID later. ... ok test_set_uuid_later (formats_test.uuid_test.Ext2FSAfterTestCase) Create the filesystem with random UUID and reassign later. ... ok test_set_invalid_uuid (formats_test.uuid_test.Ext2FSTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.Ext2FSTestCase) Create the filesystem with a valid UUID. ... ok test_set_invalid_uuid (formats_test.uuid_test.FATFSTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.FATFSTestCase) Create the filesystem with a valid UUID. ... ok test_reset_uuid (formats_test.uuid_test.HFSPlusTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem hfs+' test_set_invalid_uuid_later (formats_test.uuid_test.HFSPlusTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem hfs+' test_set_uuid_later (formats_test.uuid_test.HFSPlusTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem hfs+' test_generate_new_uuid (formats_test.uuid_test.InitializationTestCase) Test that newly generated UUIDs are considered valid ... ok test_uuids (formats_test.uuid_test.InitializationTestCase) Initialize some filesystems with valid and invalid UUIDs. ... ok test_reset_uuid (formats_test.uuid_test.JFSTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem jfs' test_set_invalid_uuid_later (formats_test.uuid_test.JFSTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem jfs' test_set_uuid_later (formats_test.uuid_test.JFSTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem jfs' test_reset_uuid (formats_test.uuid_test.NTFSTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem ntfs' test_set_invalid_uuid_later (formats_test.uuid_test.NTFSTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem ntfs' test_set_uuid_later (formats_test.uuid_test.NTFSTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem ntfs' test_reset_uuid (formats_test.uuid_test.ReiserFSAfterTestCase) Create the filesystem with random UUID and reset it later. ... skipped 'can not write UUID for filesystem reiserfs' test_set_invalid_uuid_later (formats_test.uuid_test.ReiserFSAfterTestCase) Create the filesystem and try to reassign an invalid UUID later. ... skipped 'can not write UUID for filesystem reiserfs' test_set_uuid_later (formats_test.uuid_test.ReiserFSAfterTestCase) Create the filesystem with random UUID and reassign later. ... skipped 'can not write UUID for filesystem reiserfs' test_set_invalid_uuid (formats_test.uuid_test.ReiserFSTestCase) Create the filesystem with an invalid UUID. ... skipped 'can not create filesystem reiserfs' test_set_uuid (formats_test.uuid_test.ReiserFSTestCase) Create the filesystem with a valid UUID. ... skipped 'can not create filesystem reiserfs' test_set_invalid_uuid (formats_test.uuid_test.SwapSpaceTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.SwapSpaceTestCase) Create the filesystem with a valid UUID. ... ok test_reset_uuid (formats_test.uuid_test.XFSAfterTestCase) Create the filesystem with random UUID and reset it later. ... ok test_set_invalid_uuid_later (formats_test.uuid_test.XFSAfterTestCase) Create the filesystem and try to reassign an invalid UUID later. ... ok test_set_uuid_later (formats_test.uuid_test.XFSAfterTestCase) Create the filesystem with random UUID and reassign later. ... ok test_set_invalid_uuid (formats_test.uuid_test.XFSTestCase) Create the filesystem with an invalid UUID. ... ok test_set_uuid (formats_test.uuid_test.XFSTestCase) Create the filesystem with a valid UUID. ... ok test_device_parents (parentlist_test.ParentListTestCase) Verify that Device.parents functions as expected. ... ok test_parent_list (parentlist_test.ParentListTestCase) ... ok test_disk_tags (partitioning_test.DiskTagsTestCase) ... ok test_explicit_extended_partitions (partitioning_test.ExtendedPartitionTestCase) Verify that explicitly requested extended partitions work. ... skipped 'disabled until it can be converted to run in a vm' test_implicit_extended_partitions (partitioning_test.ExtendedPartitionTestCase) Verify management of implicitly requested extended partition. ... skipped 'disabled until it can be converted to run in a vm' test_implicit_extended_partitions_installer_mode (partitioning_test.ExtendedPartitionTestCase) ... skipped 'disabled until it can be converted to run in a vm' test_add_partition (partitioning_test.PartitioningTestCase) ... ok test_align_free_regions (partitioning_test.PartitioningTestCase) ... ok test_chunk (partitioning_test.PartitioningTestCase) ... ok test_msdos_disk_chunk1 (partitioning_test.PartitioningTestCase) ... ok test_msdos_disk_chunk2 (partitioning_test.PartitioningTestCase) ... ok test_next_partition_type (partitioning_test.PartitioningTestCase) ... ok test_vgchunk (partitioning_test.PartitioningTestCase) ... ok test_vgchunk_with_cache (partitioning_test.PartitioningTestCase) ... ok test_vgchunk_with_cache_pvfree (partitioning_test.PartitioningTestCase) ... ok test_get_helper (populator_test.AppleBootFormatPopulatorTestCase) ... ok test_match (populator_test.AppleBootFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.BootFormatPopulatorTestCase) ... ok test_match (populator_test.BootFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.DMDevicePopulatorTestCase) Test get_device_helper for dm devices. ... ok test_match (populator_test.DMDevicePopulatorTestCase) Test matching of dm device populator. ... ok test_run (populator_test.DMDevicePopulatorTestCase) Test dm device populator. ... ok test_get_helper (populator_test.DiskDevicePopulatorTestCase) Test get_device_helper for disks. ... ok test_match (populator_test.DiskDevicePopulatorTestCase) Test matching of disk device populator. ... ok test_run (populator_test.DiskDevicePopulatorTestCase) Test disk device populator. ... ok test_get_helper (populator_test.DiskLabelPopulatorTestCase) Test get_format_helper for disklabels. ... ok test_match (populator_test.DiskLabelPopulatorTestCase) Test matching for disklabel format populator. ... ok test_get_helper (populator_test.EFIFormatPopulatorTestCase) ... ok test_match (populator_test.EFIFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.Ext4PopulatorTestCase) ... ok test_match (populator_test.Ext4PopulatorTestCase) ... ok test_run (populator_test.Ext4PopulatorTestCase) ... ok test_get_helper (populator_test.FormatPopulatorTestCase) ... ok test_match (populator_test.FormatPopulatorTestCase) ... ok test_run (populator_test.FormatPopulatorTestCase) ... ok test_get_helper (populator_test.HFSPopulatorTestCase) ... ok test_match (populator_test.HFSPopulatorTestCase) ... ok test_run (populator_test.HFSPopulatorTestCase) ... ok test_get_helper (populator_test.LVMDevicePopulatorTestCase) Test get_device_helper for lvm devices. ... ok test_match (populator_test.LVMDevicePopulatorTestCase) Test matching of lvm device populator. ... ok test_run (populator_test.LVMDevicePopulatorTestCase) Test lvm device populator. ... ok test_get_helper (populator_test.LVMFormatPopulatorTestCase) ... ok test_match (populator_test.LVMFormatPopulatorTestCase) ... ok test_run (populator_test.LVMFormatPopulatorTestCase) Test lvm format populator. ... ok test_get_helper (populator_test.LoopDevicePopulatorTestCase) Test get_device_helper for loop devices. ... ok test_match (populator_test.LoopDevicePopulatorTestCase) Test matching of loop device populator. ... ok test_run (populator_test.LoopDevicePopulatorTestCase) Test loop device populator. ... ok test_get_helper (populator_test.MDDevicePopulatorTestCase) Test get_device_helper for md arrays. ... ok test_match (populator_test.MDDevicePopulatorTestCase) Test matching of md device populator. ... ok test_run (populator_test.MDDevicePopulatorTestCase) Test md device populator. ... ok test_get_helper (populator_test.MDFormatPopulatorTestCase) ... ok test_match (populator_test.MDFormatPopulatorTestCase) ... ok test_run (populator_test.MDFormatPopulatorTestCase) Test md format populator. ... ok test_get_helper (populator_test.MacEFIFormatPopulatorTestCase) ... ok test_match (populator_test.MacEFIFormatPopulatorTestCase) Test boot format populator helper match method ... ok test_get_helper (populator_test.MultipathDevicePopulatorTestCase) Test get_device_helper for multipaths. ... ok test_match (populator_test.MultipathDevicePopulatorTestCase) Test matching of multipath device populator. ... ok test_run (populator_test.MultipathDevicePopulatorTestCase) Test multipath device populator. ... ok test_get_helper (populator_test.NVDIMMNamespaceDevicePopulatorTestCase) Test get_device_helper for NVDIMM namespaces. ... ok test_match (populator_test.NVDIMMNamespaceDevicePopulatorTestCase) Test matching of NVDIMM namespace device populator. ... ok test_run (populator_test.NVDIMMNamespaceDevicePopulatorTestCase) Test disk device populator. ... ok test_get_helper (populator_test.OpticalDevicePopulatorTestCase) Test get_device_helper for optical devices. ... ok test_match (populator_test.OpticalDevicePopulatorTestCase) Test matching of optical device populator. ... ok test_run (populator_test.OpticalDevicePopulatorTestCase) Test optical device populator. ... ok test_get_helper (populator_test.PartitionDevicePopulatorTestCase) Test get_device_helper for partitions. ... ok test_match (populator_test.PartitionDevicePopulatorTestCase) Test matching for partition device populator. ... ok test_run (populator_test.PartitionDevicePopulatorTestCase) Test partition device populator. ... ok test_get_helper (populator_test.SwapPopulatorTestCase) ... ok test_match (populator_test.SwapPopulatorTestCase) ... ok test_run (populator_test.SwapPopulatorTestCase) ... ok test_get_helper (populator_test.VFATPopulatorTestCase) ... ok test_match (populator_test.VFATPopulatorTestCase) ... ok test_run (populator_test.VFATPopulatorTestCase) ... ok test_get_helper (populator_test.XFSPopulatorTestCase) ... ok test_match (populator_test.XFSPopulatorTestCase) ... ok test_run (populator_test.XFSPopulatorTestCase) ... ok test_convert_to_precision (size_test.SizeTestCase) ... ok test_convert_to_with_size (size_test.SizeTestCase) ... ok test_ensure_percent_reserve (size_test.SizeTestCase) ... ok test_exceptions (size_test.SizeTestCase) ... ok test_floating_point_str (size_test.SizeTestCase) ... ok test_human_readable (size_test.SizeTestCase) ... ok test_human_readable_fractional_quantities (size_test.SizeTestCase) ... ok test_leading_zero (size_test.SizeTestCase) ... ok test_no_units_in_string (size_test.SizeTestCase) ... ok test_partial_bytes (size_test.SizeTestCase) ... ok test_pickling (size_test.SizeTestCase) ... ok test_scientific_notation (size_test.SizeTestCase) ... ok test_segative (size_test.SizeTestCase) ... ok test_white_space (size_test.SizeTestCase) ... ok test_human_readable_translation (size_test.TranslationTestCase) ... skipped "libbytesize's translations are not available, cannot test now" test_round_to_nearest (size_test.TranslationTestCase) ... skipped "libbytesize's translations are not available, cannot test now" test_translated (size_test.TranslationTestCase) ... skipped "libbytesize's translations are not available, cannot test now" test_arithmetic (size_test.UtilityMethodsTestCase) ... ok test_udev_device_is_disk_md (udev_test.UdevTest) ... ok test_udev_get_device (udev_test.UdevTest) ... ok test_udev_settle (udev_test.UdevTest) ... ok test_udev_trigger (udev_test.UdevTest) ... ok test_recursive_remove (unsupported_disklabel_test.UnsupportedDiskLabelTestCase) ... ok test_unsupported_disklabel (unsupported_disklabel_test.UnsupportedDiskLabelTestCase) Test behavior of partitions on unsupported disklabels. ... ok test_dependency_guard (util_test.DependencyGuardTestCase) ... ok test_dedup_list (util_test.MiscTest) ... ok test_detect_virt (util_test.MiscTest) ... ok test_power_of_two (util_test.MiscTest) ... ok test_default_namedtuple (util_test.TestDefaultNamedtuple) ... ok test_requires_property (util_test.TestRequiresProperty) ... ok ```
``` ====================================================================== ERROR: test_collect_edd_data_absurd_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 243, in test_collect_edd_data_absurd_virt lib.assertVerboseEqual(len(edd_dict), 6) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== ERROR: test_collect_edd_data_sata_usb (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 149, in test_collect_edd_data_sata_usb lib.assertVerboseEqual(len(edd_dict), 2) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== ERROR: test_get_edd_dict_absurd_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 321, in test_get_edd_dict_absurd_virt lib.assertVerboseEqual(len(edd_dict), 6) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== ERROR: test_get_edd_dict_sata_usb (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 182, in test_get_edd_dict_sata_usb lib.assertVerboseEqual(len(edd_dict), 2) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 40, in assertVerboseEqual ll = len(left) TypeError: object of type 'int' has no len() ====================================================================== FAIL: test_collect_edd_data_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 579, in test_collect_edd_data_bad_sata_virt self.check_logs(debugs=debugs) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') ====================================================================== FAIL: test_collect_edd_data_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 704, in test_collect_edd_data_mostly_fixed_virt self.check_logs(debugs=debugs) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ====================================================================== FAIL: test_collect_edd_data_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 437, in test_collect_edd_data_strawberry_mountain self.check_logs(debugs=debugs) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ====================================================================== FAIL: test_collect_mbrs_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 550, in test_collect_mbrs_bad_sata_virt self.check_logs(infos=infos) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 99, in check_logs check(infos, edd.log.info) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: log has: call('edd: collected mbr signatures: %s', {}) expected: call('edd: collected mbr signatures: %s', {'sda': '0xe3bf124b', 'sdb': '0x7dfff0db', 'sdc': '0x86531966'}) ====================================================================== FAIL: test_collect_mbrs_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 663, in test_collect_mbrs_mostly_fixed_virt self.check_logs(infos=infos) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 99, in check_logs check(infos, edd.log.info) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: log has: call('edd: collected mbr signatures: %s', {}) expected: call('edd: collected mbr signatures: %s', {'sda': '0xe3bf124b', 'sdb': '0x7dfff0db', 'sdc': '0x648873aa', 'vda': '0x86531966'}) ====================================================================== FAIL: test_collect_mbrs_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 394, in test_collect_mbrs_strawberry_mountain self.check_logs(infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 99, in check_logs check(infos, edd.log.info) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: log has: call('edd: collected mbr signatures: %s', {}) expected: call('edd: MBR signature on %s is zero. new disk image?', 'sda') call('edd: MBR signature on %s is zero. new disk image?', 'sdb') call('edd: collected mbr signatures: %s', {'sdc': '0x00033091', 'sdd': '0x91271645'}) ====================================================================== FAIL: test_get_edd_dict_bad_sata_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 635, in test_get_edd_dict_bad_sata_virt self.check_logs(debugs=debugs, infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: data extracted from 0x%x:%r', 128, ) call('edd: data extracted from 0x%x:%r', 129, ) call('edd: data extracted from 0x%x:%r', 130, ) call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') ====================================================================== FAIL: test_get_edd_dict_mostly_fixed_virt (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 783, in test_get_edd_dict_mostly_fixed_virt self.check_logs(debugs=debugs, infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: data extracted from 0x%x:%r', 128, ) call('edd: data extracted from 0x%x:%r', 129, ) call('edd: data extracted from 0x%x:%r', 130, ) call('edd: data extracted from 0x%x:%r', 131, ) call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ====================================================================== FAIL: test_get_edd_dict_strawberry_mountain (devicelibs_test.edd_test.EddTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 525, in test_get_edd_dict_strawberry_mountain self.check_logs(debugs=debugs, infos=infos, warnings=warnings) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 98, in check_logs check(debugs, edd.log.debug) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/devicelibs_test/edd_test.py", line 92, in check lib.assertVerboseListEqual(newleft, right) File "/tmp/autopkgtest.1RR5ki/autopkgtest_tmp/tests/lib.py", line 35, in assertVerboseListEqual raise AssertionError(s) AssertionError: expected: call('edd: data extracted from 0x%x:%r', 128, ) call('edd: data extracted from 0x%x:%r', 129, ) call('edd: data extracted from 0x%x:%r', 130, ) call('edd: data extracted from 0x%x:%r', 131, ) call('edd: found device 0x%x at %s', 128, '/sys/firmware/edd/int13_dev80/') call('edd: found device 0x%x at %s', 129, '/sys/firmware/edd/int13_dev81/') call('edd: found device 0x%x at %s', 130, '/sys/firmware/edd/int13_dev82/') call('edd: found device 0x%x at %s', 131, '/sys/firmware/edd/int13_dev83/') ---------------------------------------------------------------------- Ran 730 tests in 456.086s FAILED (failures=9, errors=4, skipped=326) autopkgtest [07:50:39]: @@@@@@@@@@@@@@@@@@@@ summary command1 FAIL non-zero exit status 1 qemu-system-x86_64: terminating on signal 15 from pid 38205 (/usr/bin/python3) ```

[1] https://salsa.debian.org/python-team/modules/blivet/-/blob/debian/master/debian/rules#L21 [2] https://salsa.debian.org/python-team/modules/blivet/-/blob/debian/master/debian/tests/control

vojtechtrefny commented 4 years ago

I'm trying to build a Debian package for blivet.

That's great! Sorry our tests are causing so many problems.

but the autopkgtest tests are still causing me some problems (expand details to see).

I think I know what's the problem here. The edd_data folder in tests/devicelibs_test is a fake "sysfs" we use in the tests and it contains a lot of symlinks -- it looks like the symlinks are broken and that's why the tests are failing.

vojtechtrefny commented 4 years ago

@mans0954 Is there something we can do to help here? We are already skipping some of the tests using environmental variables so maybe we could add similar "skip condition" for the edd tests to make this work for you?

vojtechtrefny commented 1 year ago

All the failures should be now fixed and we also have a new CI job to run tests as a non-root user on Ubuntu in GH actions so we shouldn't break this in the future.