
Project: https://jenkins.ovirt.org/job/ovirt-system-tests_compat-4.3-suite-master/ Build: https://jenkins.ovirt.org/job/ovirt-system-tests_compat-4.3-suite-master/536... Build Number: 536 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #527 [Michal Skrivanek] smaller OST VMs Changes for Build #528 [Michal Skrivanek] smaller OST VMs [Barak Korren] Dropped FCRAW tests for STDCI [Barak Korren] usrc: expand test for 'files' provider Changes for Build #529 [Michal Skrivanek] smaller OST VMs [Barak Korren] usrc: Filtering for the `files` provider Changes for Build #530 [Marcin Sobczyk] ost_utils: ansible: Sort events by creation date Changes for Build #531 [Michal Skrivanek] avoid ballooning crash in vm0 after memory hotplug Changes for Build #532 [Michal Skrivanek] avoid ballooning crash in vm0 after memory hotplug Changes for Build #533 [Michal Skrivanek] avoid ballooning crash in vm0 after memory hotplug Changes for Build #534 [Michal Skrivanek] avoid ballooning crash in vm0 after memory hotplug Changes for Build #535 [Michal Skrivanek] fix using ost-images without lagofy Changes for Build #536 [Michal Skrivanek] fix using ost-images without lagofy ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: basic-suite-master.test-scenarios.004_basic_sanity_pytest.test_sparsify_disk1 Error Message: AssertionError: False != True after 600 seconds Stack Trace: api_v4 = <ovirtsdk4.Connection object at 0x7fd8fe9bb690> @order_by(_TEST_LIST) def test_sparsify_disk1(api_v4): engine = api_v4.system_service() disk_service = test_utils.get_disk_service(engine, DISK1_NAME) with test_utils.TestEvent(engine, 1325): # USER_SPARSIFY_IMAGE_START event disk_service.sparsify() with test_utils.TestEvent(engine, 1326): # USER_SPARSIFY_IMAGE_FINISH_SUCCESS
pass
../basic-suite-master/test-scenarios/004_basic_sanity_pytest.py:295: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib64/python2.7/contextlib.py:24: in __exit__ self.gen.next() ../compat-4.3-suite-master/test_utils/__init__.py:252: in TestEvent lambda: /usr/lib/python2.7/site-packages/ovirtlago/testlib.py:286: in assert_true_within_long assert_equals_within_long(func, True, allowed_exceptions) /usr/lib/python2.7/site-packages/ovirtlago/testlib.py:273: in assert_equals_within_long func, value, LONG_TIMEOUT, allowed_exceptions=allowed_exceptions _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ func = <function <lambda> at 0x7fd8f729a320>, value = True, timeout = 600 allowed_exceptions = [], initial_wait = 0 def assert_equals_within( func, value, timeout, allowed_exceptions=None, initial_wait=10 ): allowed_exceptions = allowed_exceptions or [] with utils.EggTimer(timeout) as timer: while not timer.elapsed(): try: res = func() if res == value: return except Exception as exc: if _instance_of_any(exc, allowed_exceptions): time.sleep(3) continue LOGGER.exception("Unhandled exception in %s", func) raise if initial_wait == 0: time.sleep(3) else: time.sleep(initial_wait) initial_wait = 0 try: raise AssertionError(
'%s != %s after %s seconds' % (res, value, timeout)
) E AssertionError: False != True after 600 seconds /usr/lib/python2.7/site-packages/ovirtlago/testlib.py:252: AssertionError