Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-master/ 
Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-master/518/
Build Number: 518
Build Status:  Failure
Triggered By: Started by timer

-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #518
[Roy Golan] Introduce openshift-on-ovirt




-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED:  
network-suite-master.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac

Error Message:
Timeout: Last evaluated result: ok

Stack Trace:
system = <lib.system.SDKSystemRoot object at 0x7f00161cafd0>
default_cluster = <lib.clusterlib.Cluster object at 0x7f00161caf90>
ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f00145c9e10>
cirros_template = 'Cirros_0_4_0'

    def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac(
            system, default_cluster, ovirtmgmt_vnic_profile, cirros_template):
        with virtlib.vm_pool(system, size=2) as (vm_0, vm_1):
            vm_0.create(vm_name=VM0,
                        cluster=default_cluster,
                        template=cirros_template)
            vm_0.wait_for_down_status()
    
            vm_0.run()
            vm_0.wait_for_up_status()
    
            nicless_snapshot = _create_snapshot(vm_0)
    
            vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1)
            vm_0.stop()
            vm_0.wait_for_down_status()
    
            nicless_snapshot.preview()
>           nicless_snapshot.wait_for_preview_status()

network-suite-master/tests/test_mac_pools.py:125: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
network-suite-master/lib/virtlib.py:270: in wait_for_preview_status
    success_criteria=lambda status: status == SnapshotStatus.IN_PREVIEW
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

exec_func = <function <lambda> at 0x7f00159a4320>, exec_func_args = ()
success_criteria = <function <lambda> at 0x7f00159a42a8>, timeout = 120

    def sync(exec_func, exec_func_args, success_criteria, 
timeout=DEFAULT_TIMEOUT):
        end_time = _monothonic_time() + timeout
    
        result = exec_func(*exec_func_args)
        if success_criteria(result):
            return
    
        while _monothonic_time() < end_time:
            time.sleep(3)
            result = exec_func(*exec_func_args)
            if success_criteria(result):
                return
    
>       raise Timeout(result)
E       Timeout: Last evaluated result: ok

network-suite-master/lib/syncutil.py:50: Timeout
_______________________________________________
Infra mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/[email protected]/message/RVGODMZFQMQZF5U6F4KPPWJFNNPA33UX/

Reply via email to