
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/521... Build Number: 521 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #512 [Nir Soffer] setup: Do not hide real issue by reserving ports Changes for Build #513 [Nir Soffer] setup: Do not hide real issue by reserving ports Changes for Build #514 [Nir Soffer] setup: Do not hide real issue by reserving ports [Sandro Bonazzola] ovirt-guest-agent: drop fc30 [Ehud Yonasi] mock_configs: added rhel configs. Changes for Build #515 [Nir Soffer] setup: Do not hide real issue by reserving ports Changes for Build #516 [Michal Skrivanek] verify hotplug memory and test unplug [Tristan Cacqueray] zuul-jobs-gate: repparent to base-gate-job [Ehud Yonasi] stdci_runner: added the rhel labels selection. Changes for Build #517 [Galit Rosenthal] Remove the test configure_vdsm_sos_plugin not needed Changes for Build #518 [Marcin Sobczyk] basic: ansible: Port '003_00_metrics_bootstrap_pytest.py' to ansible Changes for Build #519 [Marcin Sobczyk] basic: ansible: Port '003_00_metrics_bootstrap_pytest.py' to ansible Changes for Build #520 [Marcin Sobczyk] basic: ansible: Port '003_00_metrics_bootstrap_pytest.py' to ansible Changes for Build #521 [Galit Rosenthal] Vagrant: Move vagrant to version 2.2.9 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: basic-suite-master.test-scenarios.004_basic_sanity_pytest.test_hotplug_memory Error Message: AttributeError: 'NoneType' object has no attribute 'group' Stack Trace: prefix = <ovirtlago.prefix.OvirtPrefix object at 0x7f237e32d710> hotplug_mem_amount = 268435456 @order_by(_TEST_LIST) def test_hotplug_memory(prefix, hotplug_mem_amount): api_v4 = prefix.virt_env.engine_vm().get_api_v4() engine = api_v4.system_service() vm_service = test_utils.get_vm_service(engine, VM0_NAME) new_memory = vm_service.get().memory + hotplug_mem_amount with test_utils.TestEvent(engine, 2039): # HOT_SET_MEMORY(2,039) vm_service.update( vm=types.Vm( memory=new_memory ) ) assert vm_service.get().memory == new_memory assert_vm0_is_alive(prefix)
assert _vm_libvirt_memory_amount(prefix, VM0_NAME) // KB == new_memory // MB
../basic-suite-master/test-scenarios/004_basic_sanity_pytest.py:1050: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ prefix = <ovirtlago.prefix.OvirtPrefix object at 0x7f237e32d710> vm_name = 'vm0' def _vm_libvirt_memory_amount(prefix, vm_name): vm_host = _vm_host(prefix, vm_name) ret = vm_host.ssh(['virsh', '-r', 'dumpxml', vm_name]) assert ret.code == 0 match = re.search(r'<currentMemory unit=\'KiB\'>(?P<mem>[0-9]+)', ret.out.decode('utf-8'))
return int(match.group('mem'))
E AttributeError: 'NoneType' object has no attribute 'group' ../basic-suite-master/test-scenarios/004_basic_sanity_pytest.py:1032: AttributeError