VDSM CI is failing now consistently. Last related change is:
https://gerrit.ovirt.org/c/vdsm/+/116090

Build:
https://jenkins.ovirt.org/job/vdsm_standard-check-patch/29212//artifact/check-patch.tests-py3.el8stream.x86_64/mock_logs/script/stdout_stderr.log

_____________________ QemuGuestAgentTests.test_pci_devices _____________________

self = <virt.qemuguestagent_test.QemuGuestAgentTests
testMethod=test_pci_devices>

    def test_pci_devices(self):
        devices = self.qga_poller._qga_call_get_devices(self.vm)['pci_devices']
        # Ethernet is returned twice by the agent but should appear only
        # once in the list
        assert len(devices) == 2
        eth = [d for d in devices if d['device_id'] == 4096][0]
        assert eth == {
            'device_id': 4096,
            'driver_date': '2019-08-12',
            'driver_name': 'Red Hat VirtIO Ethernet Adapter',
            'driver_version': '100.80.104.17300',
            'vendor_id': 6900,
        }
        balloon = [d for d in devices if d['device_id'] == 4098][0]
>       assert balloon == {
            'device_id': 4098,
            'driver_date': '2019-08-12',
            'driver_name': 'VirtIO Balloon Driver',
            'driver_version': '100.80.104.17300',
            'vendor_id': 6900,
        }
E       AssertionError: assert {'device_id':...4.17300', ...} ==
{'device_id':...4.17300', ...}
E         Omitting 4 identical items, use -vv to show
E         Differing items:
E         {'driver_date': '2019-08-11'} != {'driver_date': '2019-08-12'}

Are we using real time in this test?

E         Use -v to get the full diff
_______________________________________________
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/devel@ovirt.org/message/Y2QMOHQYV5RT7CJ5GRAXEMHHDXRNDKZQ/

Reply via email to