[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-rawhide #578
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...>
------------------------------------------
Started by upstream project "libvirt-dbus-check" build number 578
originally caused by:
Started by upstream project "libvirt-dbus-syntax-check" build number 621
originally caused by:
Started by upstream project "libvirt-dbus-build" build number 629
originally caused by:
Started by upstream project "libvirt-glib-build" build number 636
originally caused by:
Started by upstream project "libvirt-build" build number 772
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-rawhide (libvirt) in workspace <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...>
[libvirt-dbus] $ /bin/sh -xe /tmp/jenkins16910931043606207368.sh
+ cd build
+ /usr/bin/gmake check
Making check in data
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
Making check in docs
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
Making check in src
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
Making check in tests
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
/usr/bin/gmake test_util
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
CC test_util-test_util.o
CCLD test_util
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
/usr/bin/gmake check-TESTS
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
PASS: test_util
PASS: test_interface.py
PASS: test_domain.py
FAIL: test_network.py
FAIL: test_connect.py
PASS: test_nodedev.py
PASS: test_storage.py
============================================================================
Testsuite summary for libvirt-dbus 1.4.0
============================================================================
# TOTAL: 7
# PASS: 5
# SKIP: 0
# XFAIL: 0
# FAIL: 2
# XPASS: 0
# ERROR: 0
============================================================================
See tests/test-suite.log
Please report to libvir-list(a)redhat.com
============================================================================
gmake[3]: *** [Makefile:766: test-suite.log] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
gmake[2]: *** [Makefile:874: check-TESTS] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
gmake[1]: *** [Makefile:990: check-am] Error 2
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...'>
gmake: *** [Makefile:460: check-recursive] Error 1
+ cat tests/test-suite.log
==============================================
libvirt-dbus 1.4.0: tests/test-suite.log
==============================================
# TOTAL: 7
# PASS: 5
# SKIP: 0
# XFAIL: 0
# FAIL: 2
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test_connect.py
=====================
============================= test session starts ==============================
platform linux -- Python 3.7.4, pytest-4.6.5, py-1.8.0, pluggy-0.12.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...>
collected 35 items
../../tests/test_connect.py .................E................E [100%]
==================================== ERRORS ====================================
_________ ERROR at setup of TestConnect.test_connect_get_capabilities __________
self = <test_connect.TestConnect object at 0x7fa5033e1450>
request = <SubRequest 'libvirt_dbus_setup' for <Function test_connect_get_capabilities>>
@pytest.fixture(autouse=True)
def libvirt_dbus_setup(self, request):
"""Start libvirt-dbus for each test function
"""
os.environ['LIBVIRT_DEBUG'] = '3'
self.libvirt_dbus = subprocess.Popen([exe, '--session'])
self.bus = dbus.SessionBus()
for i in range(10):
if self.bus.name_has_owner('org.libvirt'):
break
time.sleep(0.1)
else:
> raise TimeoutError('error starting libvirt-dbus')
E TimeoutError: error starting libvirt-dbus
../../tests/libvirttest.py:44: TimeoutError
_ ERROR at setup of TestConnect.test_connect_storage_vol_lookup_by_property[StorageVolLookupByPath-Path] _
self = <test_connect.TestConnect object at 0x7fa5031dff90>
@pytest.fixture
def storage_volume_create(self):
""" Fixture to create dummy storage volume on the test driver
This fixture should be used in the setup of every test manipulating
with test volume.
"""
_, test_storage_pool = self.get_test_storage_pool()
interface_obj = dbus.Interface(test_storage_pool,
'org.libvirt.StoragePool')
> path = interface_obj.StorageVolCreateXML(xmldata.minimal_storage_vol_xml, 0)
../../tests/libvirttest.py:125:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7fa5033858f0>
bus_name = dbus.String(':1.19')
object_path = dbus.ObjectPath('/org/libvirt/Test/storagepool/_35bb2ad9_388a_cdfe_461a_b8907f6e53fe')
dbus_interface = 'org.libvirt.StoragePool', method = 'StorageVolCreateXML'
signature = 'su'
args = ('\n<volume>\n <name>sparse.img</name>\n <capacity unit="G">2</capacity>\n <target>\n <path>/var/lib/virt/images/sparse.img</path>\n </target>\n</volume>\n', 0)
timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/storagepool/_35bb2ad9_388a_cdfe_461a_b8907f6e53fe, iface: org.libvirt.StoragePool, member: StorageVolCreateXML dest: :1.19>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: operation failed: storage vol already exists
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
====================== 33 passed, 2 error in 8.70 seconds ======================
FAIL test_connect.py (exit status: 1)
FAIL: test_network.py
=====================
============================= test session starts ==============================
platform linux -- Python 3.7.4, pytest-4.6.5, py-1.8.0, pluggy-0.12.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...>
collected 7 items
../../tests/test_network.py .....E. [100%]
==================================== ERRORS ====================================
_____________ ERROR at setup of TestNetwork.test_network_undefine ______________
self = <test_network.TestNetwork object at 0x7f0f5e752710>
request = <SubRequest 'libvirt_dbus_setup' for <Function test_network_undefine>>
@pytest.fixture(autouse=True)
def libvirt_dbus_setup(self, request):
"""Start libvirt-dbus for each test function
"""
os.environ['LIBVIRT_DEBUG'] = '3'
self.libvirt_dbus = subprocess.Popen([exe, '--session'])
self.bus = dbus.SessionBus()
for i in range(10):
if self.bus.name_has_owner('org.libvirt'):
break
time.sleep(0.1)
else:
> raise TimeoutError('error starting libvirt-dbus')
E TimeoutError: error starting libvirt-dbus
../../tests/libvirttest.py:44: TimeoutError
====================== 6 passed, 1 error in 3.39 seconds =======================
FAIL test_network.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
5 years, 3 months
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-29 #578
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/57...>
------------------------------------------
[...truncated 3.84 KB...]
Making check in data
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
Making check in docs
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
Making check in src
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
Making check in tests
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
/usr/bin/gmake test_util
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
CC test_util-test_util.o
CCLD test_util
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
/usr/bin/gmake check-TESTS
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
PASS: test_util
PASS: test_interface.py
PASS: test_domain.py
FAIL: test_connect.py
PASS: test_network.py
PASS: test_nodedev.py
PASS: test_storage.py
============================================================================
Testsuite summary for libvirt-dbus 1.4.0
============================================================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
See tests/test-suite.log
Please report to libvir-list(a)redhat.com
============================================================================
gmake[3]: *** [Makefile:766: test-suite.log] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[2]: *** [Makefile:874: check-TESTS] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[1]: *** [Makefile:990: check-am] Error 2
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake: *** [Makefile:460: check-recursive] Error 1
+ cat tests/test-suite.log
==============================================
libvirt-dbus 1.4.0: tests/test-suite.log
==============================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test_connect.py
=====================
============================= test session starts ==============================
platform linux -- Python 3.7.4, pytest-3.6.4, py-1.5.4, pluggy-0.6.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws/,> inifile:
collected 35 items
../../tests/test_connect.py ..........E....E..................E [100%]
==================================== ERRORS ====================================
ERROR at setup of TestConnect.test_connect_properties_return_type[Secure-Boolean]
self = <test_connect.TestConnect object at 0x7fae7371a690>
request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_connect_properties_return_type[Secure-Boolean]'>>
@pytest.fixture(autouse=True)
def libvirt_dbus_setup(self, request):
"""Start libvirt-dbus for each test function
"""
os.environ['LIBVIRT_DEBUG'] = '3'
self.libvirt_dbus = subprocess.Popen([exe, '--session'])
self.bus = dbus.SessionBus()
for i in range(10):
if self.bus.name_has_owner('org.libvirt'):
break
time.sleep(0.1)
else:
> raise TimeoutError('error starting libvirt-dbus')
E TimeoutError: error starting libvirt-dbus
../../tests/libvirttest.py:44: TimeoutError
ERROR at setup of TestConnect.test_connect_interface_lookup_by_property[InterfaceLookupByMAC-MAC]
self = <test_connect.TestConnect object at 0x7fae73713950>
@pytest.fixture
def interface_create(self):
""" Fixture to define dummy interface on the test driver
This fixture should be used in the setup of every test manipulating
with interfaces.
"""
path = self.connect.InterfaceDefineXML(xmldata.minimal_interface_xml, 0)
obj = self.bus.get_object('org.libvirt', path)
interface_obj = dbus.Interface(obj, 'org.libvirt.Interface')
> interface_obj.Create(0)
../../tests/libvirttest.py:84:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7fae7380e230>
bus_name = dbus.String(':1.11')
object_path = dbus.ObjectPath('/org/libvirt/Test/interface/11_3a22_3a33_3a44_3a55_3a66')
dbus_interface = 'org.libvirt.Interface', method = 'Create', signature = 'u'
args = (0,), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/interface/11_3a22_3a33_3a44_3a55_3a66, iface: org.libvirt.Interface, member: Create dest: :1.11>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: Requested operation is not valid
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
ERROR at setup of TestConnect.test_connect_storage_vol_lookup_by_property[StorageVolLookupByPath-Path]
self = <test_connect.TestConnect object at 0x7fae737f5a10>
@pytest.fixture
def storage_volume_create(self):
""" Fixture to create dummy storage volume on the test driver
This fixture should be used in the setup of every test manipulating
with test volume.
"""
_, test_storage_pool = self.get_test_storage_pool()
interface_obj = dbus.Interface(test_storage_pool,
'org.libvirt.StoragePool')
> path = interface_obj.StorageVolCreateXML(xmldata.minimal_storage_vol_xml, 0)
../../tests/libvirttest.py:125:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7fae7380e230>
bus_name = dbus.String(':1.11')
object_path = dbus.ObjectPath('/org/libvirt/Test/storagepool/_dfe224cb_28fb_8dd0_c4b2_64eb3f0f4566')
dbus_interface = 'org.libvirt.StoragePool', method = 'StorageVolCreateXML'
signature = 'su'
args = ('\n<volume>\n <name>sparse.img</name>\n <capacity unit="G">2</capacity>\n <target>\n <path>/var/lib/virt/images/sparse.img</path>\n </target>\n</volume>\n', 0)
timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/storagepool/_dfe224cb_28fb_8dd0_c4b2_64eb3f0f4566, iface: org.libvirt.StoragePool, member: StorageVolCreateXML dest: :1.11>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: operation failed: storage vol already exists
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
===================== 32 passed, 3 error in 16.68 seconds ======================
FAIL test_connect.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
5 years, 3 months
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-29 #576
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/57...>
------------------------------------------
[...truncated 4.12 KB...]
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
Making check in src
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
Making check in tests
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
/usr/bin/gmake test_util
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
CC test_util-test_util.o
CCLD test_util
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
/usr/bin/gmake check-TESTS
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
PASS: test_util
PASS: test_interface.py
FAIL: test_domain.py
PASS: test_network.py
PASS: test_nodedev.py
PASS: test_connect.py
PASS: test_storage.py
============================================================================
Testsuite summary for libvirt-dbus 1.4.0
============================================================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
See tests/test-suite.log
Please report to libvir-list(a)redhat.com
============================================================================
gmake[3]: *** [Makefile:766: test-suite.log] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[2]: *** [Makefile:874: check-TESTS] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake[1]: *** [Makefile:990: check-am] Error 2
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws...'>
gmake: *** [Makefile:460: check-recursive] Error 1
+ cat tests/test-suite.log
==============================================
libvirt-dbus 1.4.0: tests/test-suite.log
==============================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test_domain.py
====================
============================= test session starts ==============================
platform linux -- Python 3.7.4, pytest-3.6.4, py-1.5.4, pluggy-0.6.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws/,> inifile:
collected 10 items
../../tests/test_domain.py ...E..FF.. [100%]
==================================== ERRORS ====================================
______________ ERROR at setup of TestDomain.test_domain_metadata _______________
self = <test_domain.TestDomain object at 0x7f45127f6810>
request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_domain_metadata'>>
@pytest.fixture(autouse=True)
def libvirt_dbus_setup(self, request):
"""Start libvirt-dbus for each test function
"""
os.environ['LIBVIRT_DEBUG'] = '3'
self.libvirt_dbus = subprocess.Popen([exe, '--session'])
self.bus = dbus.SessionBus()
for i in range(10):
if self.bus.name_has_owner('org.libvirt'):
break
time.sleep(0.1)
else:
> raise TimeoutError('error starting libvirt-dbus')
E TimeoutError: error starting libvirt-dbus
../../tests/libvirttest.py:44: TimeoutError
=================================== FAILURES ===================================
___________________________ TestDomain.test_suspend ____________________________
self = <test_domain.TestDomain object at 0x7f45127a5610>
def test_suspend(self):
def domain_suspended(path, event, detail):
if event != libvirttest.DomainEvent.SUSPENDED:
return
assert detail == libvirttest.DomainEventSuspendedDetailType.PAUSED
assert isinstance(path, dbus.ObjectPath)
self.loop.quit()
self.connect.connect_to_signal('DomainEvent', domain_suspended)
obj, domain = self.get_test_domain()
> domain.Suspend()
../../tests/test_domain.py:125:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f45128d4770>
bus_name = dbus.String(':1.4')
object_path = dbus.ObjectPath('/org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f')
dbus_interface = 'org.libvirt.Domain', method = 'Suspend', signature = ''
args = (), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f, iface: org.libvirt.Domain, member: Suspend dest: :1.4>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: internal error: domain 'test' not running
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
--------------------------- Captured stderr teardown ---------------------------
Disconnected from D-Bus.
___________________________ TestDomain.test_undefine ___________________________
self = <test_domain.TestDomain object at 0x7f45128d62d0>
def test_undefine(self):
def domain_undefined(path, event, detail):
if event != libvirttest.DomainEvent.UNDEFINED:
return
assert detail == libvirttest.DomainEventUndefinedDetailType.REMOVED
assert isinstance(path, dbus.ObjectPath)
self.loop.quit()
self.connect.connect_to_signal('DomainEvent', domain_undefined)
_, domain = self.get_test_domain()
> domain.Shutdown(0)
../../tests/test_domain.py:143:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f45128d4770>
bus_name = dbus.String(':1.4')
object_path = dbus.ObjectPath('/org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f')
dbus_interface = 'org.libvirt.Domain', method = 'Shutdown', signature = 'u'
args = (0,), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f, iface: org.libvirt.Domain, member: Shutdown dest: :1.4>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: internal error: domain 'test' not running
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
--------------------------- Captured stderr teardown ---------------------------
Disconnected from D-Bus.
================= 2 failed, 7 passed, 1 error in 9.34 seconds ==================
FAIL test_domain.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
5 years, 4 months
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-build » libvirt-freebsd-12 #623
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-build/systems=libvirt-freebsd-12/6...>
------------------------------------------
Started by upstream project "libvirt-dbus-build" build number 623
originally caused by:
Started by upstream project "libvirt-glib-build" build number 630
originally caused by:
Started by upstream project "libvirt-build" build number 766
originally caused by:
Started by an SCM change
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-freebsd-12 (libvirt) in workspace <https://ci.centos.org/job/libvirt-dbus-build/systems=libvirt-freebsd-12/ws/>
No credentials specified
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://github.com/libvirt/libvirt-dbus.git # timeout=10
Fetching upstream changes from https://github.com/libvirt/libvirt-dbus.git
> git --version # timeout=10
> git fetch --tags --force --progress https://github.com/libvirt/libvirt-dbus.git +refs/heads/*:refs/remotes/origin/*
Checking out Revision 9950c0c46d7eb3f3e7052b34464e8499b67d358a (refs/remotes/origin/master)
> git config core.sparsecheckout # timeout=10
> git checkout -f 9950c0c46d7eb3f3e7052b34464e8499b67d358a
FATAL: Could not checkout 9950c0c46d7eb3f3e7052b34464e8499b67d358a
hudson.plugins.git.GitException: Command "git checkout -f 9950c0c46d7eb3f3e7052b34464e8499b67d358a" returned status code 143:
stdout:
stderr:
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2042)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$900(CliGitAPIImpl.java:72)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$9.execute(CliGitAPIImpl.java:2341)
Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to JNLP4-connect connection from n64.gusty.ci.centos.org/172.19.2.192:1030
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1743)
at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
at hudson.remoting.Channel.call(Channel.java:957)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
at com.sun.proxy.$Proxy85.execute(Unknown Source)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1242)
at hudson.scm.SCM.checkout(SCM.java:504)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1208)
at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
at hudson.model.Run.execute(Run.java:1818)
at hudson.matrix.MatrixRun.run(MatrixRun.java:153)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Caused: hudson.plugins.git.GitException: Could not checkout 9950c0c46d7eb3f3e7052b34464e8499b67d358a
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$9.execute(CliGitAPIImpl.java:2365)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$1.call(RemoteGitImpl.java:153)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$1.call(RemoteGitImpl.java:146)
at hudson.remoting.UserRequest.perform(UserRequest.java:212)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:369)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at hudson.remoting.Engine$1.lambda$newThread$0(Engine.java:93)
at java.lang.Thread.run(Thread.java:834)
5 years, 4 months
[Libvirt-ci] Build failed in Jenkins: virt-manager-check » libvirt-debian-9 #1023
by ci@centos.org
See <https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/102...>
------------------------------------------
[...truncated 28.10 KB...]
7fe9a7942000-7fe9a7944000 r--p 00107000 fe:01 783514 /lib/x86_64-linux-gnu/libgcrypt.so.20.1.6
7fe9a7944000-7fe9a794b000 rw-p 00109000 fe:01 783514 /lib/x86_64-linux-gnu/libgcrypt.so.20.1.6
7fe9a794b000-7fe9a91c7000 r-xp 00000000 fe:01 923592 /usr/lib/x86_64-linux-gnu/libicudata.so.57.1
7fe9a91c7000-7fe9a93c6000 ---p 0187c000 fe:01 923592 /usr/lib/x86_64-linux-gnu/libicudata.so.57.1
7fe9a93c6000-7fe9a93c7000 r--p 0187b000 fe:01 923592 /usr/lib/x86_64-linux-gnu/libicudata.so.57.1
7fe9a93c7000-7fe9a93c8000 rw-p 0187c000 fe:01 923592 /usr/lib/x86_64-linux-gnu/libicudata.so.57.1
7fe9a93cb000-7fe9a955f000 r-xp 00000000 fe:01 923599 /usr/lib/x86_64-linux-gnu/libicuuc.so.57.1
7fe9a955f000-7fe9a975e000 ---p 00194000 fe:01 923599 /usr/lib/x86_64-linux-gnu/libicuuc.so.57.1
7fe9a975e000-7fe9a9770000 r--p 00193000 fe:01 923599 /usr/lib/x86_64-linux-gnu/libicuuc.so.57.1
7fe9a9770000-7fe9a9771000 rw-p 001a5000 fe:01 923599 /usr/lib/x86_64-linux-gnu/libicuuc.so.57.1
7fe9a9771000-7fe9a9773000 rw-p 00000000 00:00 0
7fe9a9773000-7fe9a99de000 r-xp 00000000 fe:01 923593 /usr/lib/x86_64-linux-gnu/libicui18n.so.57.1
7fe9a99de000-7fe9a9bdd000 ---p 0026b000 fe:01 923593 /usr/lib/x86_64-linux-gnu/libicui18n.so.57.1
7fe9a9bdd000-7fe9a9bea000 r--p 0026a000 fe:01 923593 /usr/lib/x86_64-linux-gnu/libicui18n.so.57.1
7fe9a9bea000-7fe9a9bec000 rw-p 00277000 fe:01 923593 /usr/lib/x86_64-linux-gnu/libicui18n.so.57.1
7fe9a9bec000-7fe9a9bed000 rw-p 00000000 00:00 0
7fe9a9bf3000-7fe9a9bf7000 r-xp 00000000 fe:01 783363 /lib/x86_64-linux-gnu/libattr.so.1.1.0
7fe9a9bf7000-7fe9a9df6000 ---p 00004000 fe:01 783363 /lib/x86_64-linux-gnu/libattr.so.1.1.0
7fe9a9df6000-7fe9a9df7000 r--p 00003000 fe:01 783363 /lib/x86_64-linux-gnu/libattr.so.1.1.0
7fe9a9df7000-7fe9a9df8000 rw-p 00004000 fe:01 783363 /lib/x86_64-linux-gnu/libattr.so.1.1.0
7fe9a9dfb000-7fe9a9e11000 r-xp 00000000 fe:01 783376 /lib/x86_64-linux-gnu/libgcc_s.so.1
7fe9a9e11000-7fe9aa010000 ---p 00016000 fe:01 783376 /lib/x86_64-linux-gnu/libgcc_s.so.1
7fe9aa010000-7fe9aa011000 r--p 00015000 fe:01 783376 /lib/x86_64-linux-gnu/libgcc_s.so.1
7fe9aa011000-7fe9aa012000 rw-p 00016000 fe:01 783376 /lib/x86_64-linux-gnu/libgcc_s.so.1
7fe9aa013000-7fe9aa08e000 r-xp 00000000 fe:01 914885 /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.4.0
7fe9aa08e000-7fe9aa28e000 ---p 0007b000 fe:01 914885 /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.4.0
7fe9aa28e000-7fe9aa291000 r--p 0007b000 fe:01 914885 /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.4.0
7fe9aa291000-7fe9aa292000 rw-p 0007e000 fe:01 914885 /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.4.0
7fe9aa293000-7fe9aa41d000 r-xp 00000000 fe:01 925516 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.13.1
7fe9aa41d000-7fe9aa61d000 ---p 0018a000 fe:01 925516 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.13.1
7fe9aa61d000-7fe9aa62a000 r--p 0018a000 fe:01 925516 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.13.1
7fe9aa62a000-7fe9aa62b000 rw-p 00197000 fe:01 925516 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.13.1
7fe9aa62b000-7fe9aa62c000 rw-p 00000000 00:00 0
7fe9aa633000-7fe9aa65f000 r-xp 00000000 fe:01 934829 /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7fe9aa65f000-7fe9aa85e000 ---p 0002c000 fe:01 934829 /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7fe9aa85e000-7fe9aa85f000 r--p 0002b000 fe:01 934829 /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7fe9aa85f000-7fe9aa860000 rw-p 0002c000 fe:01 934829 /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7fe9aa863000-7fe9aa8b0000 r-xp 00000000 fe:01 783712 /lib/x86_64-linux-gnu/libdbus-1.so.3.14.16
7fe9aa8b0000-7fe9aaab0000 ---p 0004d000 fe:01 783712 /lib/x86_64-linux-gnu/libdbus-1.so.3.14.16
7fe9aaab0000-7fe9aaab2000 r--p 0004d000 fe:01 783712 /lib/x86_64-linux-gnu/libdbus-1.so.3.14.16
7fe9aaab2000-7fe9aaab3000 rw-p 0004f000 fe:01 783712 /lib/x86_64-linux-gnu/libdbus-1.so.3.14.16
7fe9aaab3000-7fe9aaac3000 r-xp 00000000 fe:01 783484 /lib/x86_64-linux-gnu/libapparmor.so.1.4.0
7fe9aaac3000-7fe9aacc2000 ---p 00010000 fe:01 783484 /lib/x86_64-linux-gnu/libapparmor.so.1.4.0
7fe9aacc2000-7fe9aacc3000 r--p 0000f000 fe:01 783484 /lib/x86_64-linux-gnu/libapparmor.so.1.4.0
7fe9aacc3000-7fe9aacc4000 rw-p 00010000 fe:01 783484 /lib/x86_64-linux-gnu/libapparmor.so.1.4.0
7fe9aaccb000-7fe9aad38000 r-xp 00000000 fe:01 916236 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1
7fe9aad38000-7fe9aaf38000 ---p 0006d000 fe:01 916236 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1
7fe9aaf38000-7fe9aaf39000 r--p 0006d000 fe:01 916236 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1
7fe9aaf39000-7fe9aaf3a000 rw-p 0006e000 fe:01 916236 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1
7fe9aaf3b000-7fe9aaf55000 r-xp 00000000 fe:01 923748 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fe9aaf55000-7fe9ab154000 ---p 0001a000 fe:01 923748 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fe9ab154000-7fe9ab155000 r--p 00019000 fe:01 923748 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fe9ab155000-7fe9ab156000 rw-p 0001a000 fe:01 923748 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fe9ab15b000-7fe9ab30b000 r-xp 00000000 fe:01 923609 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fe9ab30b000-7fe9ab50b000 ---p 001b0000 fe:01 923609 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fe9ab50b000-7fe9ab513000 r--p 001b0000 fe:01 923609 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fe9ab513000-7fe9ab515000 rw-p 001b8000 fe:01 923609 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fe9ab515000-7fe9ab516000 rw-p 00000000 00:00 0
7fe9ab51b000-7fe9ab522000 r-xp 00000000 fe:01 783381 /lib/x86_64-linux-gnu/libacl.so.1.1.0
7fe9ab522000-7fe9ab722000 ---p 00007000 fe:01 783381 /lib/x86_64-linux-gnu/libacl.so.1.1.0
7fe9ab722000-7fe9ab723000 r--p 00007000 fe:01 783381 /lib/x86_64-linux-gnu/libacl.so.1.1.0
7fe9ab723000-7fe9ab724000 rw-p 00008000 fe:01 783381 /lib/x86_64-linux-gnu/libacl.so.1.1.0
7fe9ab72b000-7fe9ab735000 r-xp 00000000 fe:01 934536 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0
7fe9ab735000-7fe9ab934000 ---p 0000a000 fe:01 934536 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0
7fe9ab934000-7fe9ab935000 r--p 00009000 fe:01 934536 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0
7fe9ab935000-7fe9ab936000 rw-p 0000a000 fe:01 934536 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0
7fe9ab93b000-7fe9ab98b000 r-xp 00000000 fe:01 783538 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1
7fe9ab98b000-7fe9abb8a000 ---p 00050000 fe:01 783538 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1
7fe9abb8a000-7fe9abb8b000 r--p 0004f000 fe:01 783538 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1
7fe9abb8b000-7fe9abb8e000 rw-p 00050000 fe:01 783538 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1
7fe9abb8e000-7fe9abb8f000 rw-p 00000000 00:00 0
7fe9abb93000-7fe9abbb0000 r-xp 00000000 fe:01 783365 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7fe9abbb0000-7fe9abdaf000 ---p 0001d000 fe:01 783365 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7fe9abdaf000-7fe9abdb0000 r--p 0001c000 fe:01 783365 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7fe9abdb0000-7fe9abdb1000 rw-p 0001d000 fe:01 783365 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7fe9abdb1000-7fe9abdbb000 rw-p 00000000 00:00 0
7fe9abdbb000-7fe9abdda000 r-xp 00000000 fe:01 784863 /lib/x86_64-linux-gnu/libnl-3.so.200.22.0
7fe9abdda000-7fe9abfd9000 ---p 0001f000 fe:01 784863 /lib/x86_64-linux-gnu/libnl-3.so.200.22.0
7fe9abfd9000-7fe9abfdb000 r--p 0001e000 fe:01 784863 /lib/x86_64-linux-gnu/libnl-3.so.200.22.0
7fe9abfdb000-7fe9abfdc000 rw-p 00020000 fe:01 784863 /lib/x86_64-linux-gnu/libnl-3.so.200.22.0
7fe9abfe3000-7fe9ac041000 r-xp 00000000 fe:01 931937 /usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.22.0
7fe9ac041000-7fe9ac240000 ---p 0005e000 fe:01 931937 /usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.22.0
7fe9ac240000-7fe9ac243000 r--p 0005d000 fe:01 931937 /usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.22.0
7fe9ac243000-7fe9ac248000 rw-p 00060000 fe:01 931937 /usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.22.0
7fe9ac248000-7fe9ac24a000 rw-p 00000000 00:00 0
7fe9ac24b000-7fe9ac254000 r-xp 00000000 fe:01 935242 /usr/lib/x86_64-linux-gnu/libyajl.so.2.1.0
7fe9ac254000-7fe9ac453000 ---p 00009000 fe:01 935242 /usr/lib/x86_64-linux-gnu/libyajl.so.2.1.0
7fe9ac453000-7fe9ac454000 r--p 00008000 fe:01 935242 /usr/lib/x86_64-linux-gnu/libyajl.so.2.1.0
7fe9ac454000-7fe9ac455000 rw-p 00009000 fe:01 935242 /usr/lib/x86_64-linux-gnu/libyajl.so.2.1.0
7fe9ac45b000-7fe9ac45f000 r-xp 00000000 fe:01 783406 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0
7fe9ac45f000-7fe9ac65f000 ---p 00004000 fe:01 783406 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0
7fe9ac65f000-7fe9ac660000 r--p 00004000 fe:01 783406 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0
7fe9ac660000-7fe9ac661000 rw-p 00005000 fe:01 783406 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0
7fe9ac663000-7fe9acac1000 r-xp 00000000 fe:01 419163 /home/jenkins/build/libvirt/lib/libvirt.so.0.5007.0
7fe9acac1000-7fe9accc0000 ---p 0045e000 fe:01 419163 /home/jenkins/build/libvirt/lib/libvirt.so.0.5007.0
7fe9accc0000-7fe9accd1000 r--p 0045d000 fe:01 419163 /home/jenkins/build/libvirt/lib/libvirt.so.0.5007.0
7fe9accd1000-7fe9accdc000 rw-p 0046e000 fe:01 419163 /home/jenkins/build/libvirt/lib/libvirt.so.0.5007.0
7fe9accdc000-7fe9accdd000 rw-p 00000000 00:00 0
7fe9acce3000-7fe9acd2d000 r-xp 00000000 fe:01 783656 /home/jenkins/build/libvirt/lib/python3.5/site-packages/libvirtmod.cpython-35m-x86_64-linux-gnu.so
7fe9acd2d000-7fe9acf2c000 ---p 0004a000 fe:01 783656 /home/jenkins/build/libvirt/lib/python3.5/site-packages/libvirtmod.cpython-35m-x86_64-linux-gnu.so
7fe9acf2c000-7fe9acf2d000 r--p 00049000 fe:01 783656 /home/jenkins/build/libvirt/lib/python3.5/site-packages/libvirtmod.cpython-35m-x86_64-linux-gnu.so
7fe9acf2d000-7fe9acf32000 rw-p 0004a000 fe:01 783656 /home/jenkins/build/libvirt/lib/python3.5/site-packages/libvirtmod.cpython-35m-x86_64-linux-gnu.so
7fe9acf39000-7fe9ad0b9000 rw-p 00000000 00:00 0
7fe9ad0db000-7fe9ad15f000 r-xp 00000000 fe:01 795731 /lib/x86_64-linux-gnu/libsystemd.so.0.17.0
7fe9ad15f000-7fe9ad160000 ---p 00084000 fe:01 795731 /lib/x86_64-linux-gnu/libsystemd.so.0.17.0
7fe9ad160000-7fe9ad163000 r--p 00084000 fe:01 795731 /lib/x86_64-linux-gnu/libsystemd.so.0.17.0
7fe9ad163000-7fe9ad164000 rw-p 00087000 fe:01 795731 /lib/x86_64-linux-gnu/libsystemd.so.0.17.0
7fe9ad164000-7fe9ad165000 rw-p 00000000 00:00 0
7fe9ad16b000-7fe9ad16f000 r-xp 00000000 fe:01 783521 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7fe9ad16f000-7fe9ad36e000 ---p 00004000 fe:01 783521 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7fe9ad36e000-7fe9ad36f000 r--p 00003000 fe:01 783521 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7fe9ad36f000-7fe9ad370000 rw-p 00004000 fe:01 783521 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7fe9ad373000-7fe9ad37a000 r-xp 00000000 fe:01 800979 /lib/x86_64-linux-gnu/librt-2.24.so
7fe9ad37a000-7fe9ad579000 ---p 00007000 fe:01 800979 /lib/x86_64-linux-gnu/librt-2.24.so
7fe9ad579000-7fe9ad57a000 r--p 00006000 fe:01 800979 /lib/x86_64-linux-gnu/librt-2.24.so
7fe9ad57a000-7fe9ad57b000 rw-p 00007000 fe:01 800979 /lib/x86_64-linux-gnu/librt-2.24.so
7fe9ad57b000-7fe9ad5bc000 r-xp 00000000 fe:01 783520 /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7fe9ad5bc000-7fe9ad7bb000 ---p 00041000 fe:01 783520 /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7fe9ad7bb000-7fe9ad7bf000 r--p 00040000 fe:01 783520 /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7fe9ad7bf000-7fe9ad7c0000 rw-p 00044000 fe:01 783520 /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7fe9ad7c0000-7fe9ad7c1000 rw-p 00000000 00:00 0
7fe9ad7c3000-7fe9ad80d000 r-xp 00000000 fe:01 783445 /lib/x86_64-linux-gnu/libmount.so.1.1.0
7fe9ad80d000-7fe9ada0d000 ---p 0004a000 fe:01 783445 /lib/x86_64-linux-gnu/libmount.so.1.1.0
7fe9ada0d000-7fe9ada0e000 r--p 0004a000 fe:01 783445 /lib/x86_64-linux-gnu/libmount.so.1.1.0
7fe9ada0e000-7fe9ada0f000 rw-p 0004b000 fe:01 783445 /lib/x86_64-linux-gnu/libmount.so.1.1.0
7fe9ada0f000-7fe9ada11000 rw-p 00000000 00:00 0
7fe9ada13000-7fe9ada27000 r-xp 00000000 fe:01 800973 /lib/x86_64-linux-gnu/libresolv-2.24.so
7fe9ada27000-7fe9adc26000 ---p 00014000 fe:01 800973 /lib/x86_64-linux-gnu/libresolv-2.24.so
7fe9adc26000-7fe9adc27000 r--p 00013000 fe:01 800973 /lib/x86_64-linux-gnu/libresolv-2.24.so
7fe9adc27000-7fe9adc28000 rw-p 00014000 fe:01 800973 /lib/x86_64-linux-gnu/libresolv-2.24.so
7fe9adc28000-7fe9adc2a000 rw-p 00000000 00:00 0
7fe9adc2b000-7fe9adc50000 r-xp 00000000 fe:01 783453 /lib/x86_64-linux-gnu/libselinux.so.1
7fe9adc50000-7fe9ade4f000 ---p 00025000 fe:01 783453 /lib/x86_64-linux-gnu/libselinux.so.1
7fe9ade4f000-7fe9ade50000 r--p 00024000 fe:01 783453 /lib/x86_64-linux-gnu/libselinux.so.1
7fe9ade50000-7fe9ade51000 rw-p 00025000 fe:01 783453 /lib/x86_64-linux-gnu/libselinux.so.1
7fe9ade51000-7fe9ade53000 rw-p 00000000 00:00 0
7fe9ade53000-7fe9adec5000 r-xp 00000000 fe:01 783439 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7fe9adec5000-7fe9ae0c4000 ---p 00072000 fe:01 783439 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7fe9ae0c4000-7fe9ae0c5000 r--p 00071000 fe:01 783439 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7fe9ae0c5000-7fe9ae0c6000 rw-p 00072000 fe:01 783439 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7fe9ae0cb000-7fe9ae258000 r-xp 00000000 fe:01 920593 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5000.3
7fe9ae258000-7fe9ae458000 ---p 0018d000 fe:01 920593 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5000.3
7fe9ae458000-7fe9ae45d000 r--p 0018d000 fe:01 920593 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5000.3
7fe9ae45d000-7fe9ae460000 rw-p 00192000 fe:01 920593 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5000.3
7fe9ae460000-7fe9ae461000 rw-p 00000000 00:00 0
7fe9ae463000-7fe9ae466000 r-xp 00000000 fe:01 920594 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5000.3
7fe9ae466000-7fe9ae665000 ---p 00003000 fe:01 920594 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5000.3
7fe9ae665000-7fe9ae666000 r--p 00002000 fe:01 920594 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5000.3
7fe9ae666000-7fe9ae667000 rw-p 00003000 fe:01 920594 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5000.3
7fe9ae66b000-7fe9ae672000 r-xp 00000000 fe:01 918699 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fe9ae672000-7fe9ae872000 ---p 00007000 fe:01 918699 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fe9ae872000-7fe9ae873000 r--p 00007000 fe:01 918699 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fe9ae873000-7fe9ae874000 rw-p 00008000 fe:01 918699 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fe9ae87b000-7fe9ae98d000 r-xp 00000000 fe:01 783990 /lib/x86_64-linux-gnu/libglib-2.0.so.0.5000.3
7fe9ae98d000-7fe9aeb8c000 ---p 00112000 fe:01 783990 /lib/x86_64-linux-gnu/libglib-2.0.so.0.5000.3
7fe9aeb8c000-7fe9aeb8d000 r--p 00111000 fe:01 783990 /lib/x86_64-linux-gnu/libglib-2.0.so.0.5000.3
7fe9aeb8d000-7fe9aeb8e000 rw-p 00112000 fe:01 783990 /lib/x86_64-linux-gnu/libglib-2.0.so.0.5000.3
7fe9aeb8e000-7fe9aeb8f000 rw-p 00000000 00:00 0
7fe9aeb93000-7fe9aebe5000 r-xp 00000000 fe:01 920595 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5000.3
7fe9aebe5000-7fe9aede4000 ---p 00052000 fe:01 920595 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5000.3
7fe9aede4000-7fe9aede5000 r--p 00051000 fe:01 920595 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5000.3
7fe9aede5000-7fe9aede6000 rw-p 00052000 fe:01 920595 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5000.3
7fe9aedeb000-7fe9aee1e000 r-xp 00000000 fe:01 930667 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7fe9aee1e000-7fe9af01d000 ---p 00033000 fe:01 930667 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7fe9af01d000-7fe9af01e000 r--p 00032000 fe:01 930667 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7fe9af01e000-7fe9af01f000 rw-p 00033000 fe:01 930667 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7fe9af023000-7fe9af024000 r-xp 00000000 fe:01 920596 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5000.3
7fe9af024000-7fe9af223000 ---p 00001000 fe:01 920596 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5000.3
7fe9af223000-7fe9af224000 r--p 00000000 fe:01 920596 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5000.3
7fe9af224000-7fe9af225000 rw-p 00001000 fe:01 920596 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5000.3
7fe9af22b000-7fe9af270000 r-xp 00000000 fe:01 943250 /usr/lib/python3/dist-packages/gi/_gi.cpython-35m-x86_64-linux-gnu.so
7fe9af270000-7fe9af470000 ---p 00045000 fe:01 943250 /usr/lib/python3/dist-packages/gi/_gi.cpython-35m-x86_64-linux-gnu.so
7fe9af470000-7fe9af472000 r--p 00045000 fe:01 943250 /usr/lib/python3/dist-packages/gi/_gi.cpython-35m-x86_64-linux-gnu.so
7fe9af472000-7fe9af479000 rw-p 00047000 fe:01 943250 /usr/lib/python3/dist-packages/gi/_gi.cpython-35m-x86_64-linux-gnu.so
7fe9af479000-7fe9af47a000 rw-p 00000000 00:00 0
7fe9af47b000-7fe9af4fb000 rw-p 00000000 00:00 0
7fe9af4fb000-7fe9af520000 r-xp 00000000 fe:01 783449 /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fe9af520000-7fe9af71f000 ---p 00025000 fe:01 783449 /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fe9af71f000-7fe9af720000 r--p 00024000 fe:01 783449 /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fe9af720000-7fe9af721000 rw-p 00025000 fe:01 783449 /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fe9af723000-7fe9af72a000 r-xp 00000000 fe:01 1050444 /usr/lib/python3.5/lib-dynload/_lzma.cpython-35m-x86_64-linux-gnu.so
7fe9af72a000-7fe9af929000 ---p 00007000 fe:01 1050444 /usr/lib/python3.5/lib-dynload/_lzma.cpython-35m-x86_64-linux-gnu.so
7fe9af929000-7fe9af92a000 r--p 00006000 fe:01 1050444 /usr/lib/python3.5/lib-dynload/_lzma.cpython-35m-x86_64-linux-gnu.so
7fe9af92a000-7fe9af92c000 rw-p 00007000 fe:01 1050444 /usr/lib/python3.5/lib-dynload/_lzma.cpython-35m-x86_64-linux-gnu.so
7fe9af933000-7fe9af942000 r-xp 00000000 fe:01 783367 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7fe9af942000-7fe9afb41000 ---p 0000f000 fe:01 783367 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7fe9afb41000-7fe9afb42000 r--p 0000e000 fe:01 783367 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7fe9afb42000-7fe9afb43000 rw-p 0000f000 fe:01 783367 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7fe9afb43000-7fe9afb47000 r-xp 00000000 fe:01 1050427 /usr/lib/python3.5/lib-dynload/_bz2.cpython-35m-x86_64-linux-gnu.so
7fe9afb47000-7fe9afd46000 ---p 00004000 fe:01 1050427 /usr/lib/python3.5/lib-dynload/_bz2.cpython-35m-x86_64-linux-gnu.so
7fe9afd46000-7fe9afd47000 r--p 00003000 fe:01 1050427 /usr/lib/python3.5/lib-dynload/_bz2.cpython-35m-x86_64-linux-gnu.so
7fe9afd47000-7fe9afd48000 rw-p 00004000 fe:01 1050427 /usr/lib/python3.5/lib-dynload/_bz2.cpython-35m-x86_64-linux-gnu.so
7fe9afd49000-7fe9afec9000 rw-p 00000000 00:00 0
7fe9afed3000-7fe9aff01000 r--p 00000000 fe:01 930671 /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib
7fe9aff03000-7fe9aff22000 r-xp 00000000 fe:01 796457 /lib/x86_64-linux-gnu/libudev.so.1.6.5
7fe9aff22000-7fe9aff23000 r--p 0001e000 fe:01 796457 /lib/x86_64-linux-gnu/libudev.so.1.6.5
7fe9aff23000-7fe9aff24000 rw-p 0001f000 fe:01 796457 /lib/x86_64-linux-gnu/libudev.so.1.6.5
7fe9aff2a000-7fe9b006a000 rw-p 00000000 00:00 0
7fe9b007b000-7fe9b008a000 r--p 00000000 fe:01 930673 /usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib
7fe9b008b000-7fe9b009b000 r--p 00000000 fe:01 784279 /home/jenkins/build/libvirt/lib/girepository-1.0/Libosinfo-1.0.typelib
7fe9b009b000-7fe9b019b000 rw-p 00000000 00:00 0
7fe9b019b000-7fe9b0330000 r-xp 00000000 fe:01 800922 /lib/x86_64-linux-gnu/libc-2.24.so
7fe9b0330000-7fe9b0530000 ---p 00195000 fe:01 800922 /lib/x86_64-linux-gnu/libc-2.24.so
7fe9b0530000-7fe9b0534000 r--p 00195000 fe:01 800922 /lib/x86_64-linux-gnu/libc-2.24.so
7fe9b0534000-7fe9b0536000 rw-p 00199000 fe:01 800922 /lib/x86_64-linux-gnu/libc-2.24.so
7fe9b0536000-7fe9b053a000 rw-p 00000000 00:00 0
7fe9b053b000-7fe9b063e000 r-xp 00000000 fe:01 800937 /lib/x86_64-linux-gnu/libm-2.24.so
7fe9b063e000-7fe9b083d000 ---p 00103000 fe:01 800937 /lib/x86_64-linux-gnu/libm-2.24.so
7fe9b083d000-7fe9b083e000 r--p 00102000 fe:01 800937 /lib/x86_64-linux-gnu/libm-2.24.so
7fe9b083e000-7fe9b083f000 rw-p 00103000 fe:01 800937 /lib/x86_64-linux-gnu/libm-2.24.so
7fe9b0843000-7fe9b085c000 r-xp 00000000 fe:01 783523 /lib/x86_64-linux-gnu/libz.so.1.2.8
7fe9b085c000-7fe9b0a5b000 ---p 00019000 fe:01 783523 /lib/x86_64-linux-gnu/libz.so.1.2.8
7fe9b0a5b000-7fe9b0a5c000 r--p 00018000 fe:01 783523 /lib/x86_64-linux-gnu/libz.so.1.2.8
7fe9b0a5c000-7fe9b0a5d000 rw-p 00019000 fe:01 783523 /lib/x86_64-linux-gnu/libz.so.1.2.8
7fe9b0a63000-7fe9b0a8a000 r-xp 00000000 fe:01 784080 /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7fe9b0a8a000-7fe9b0c8a000 ---p 00027000 fe:01 784080 /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7fe9b0c8a000-7fe9b0c8c000 r--p 00027000 fe:01 784080 /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7fe9b0c8c000-7fe9b0c8d000 rw-p 00029000 fe:01 784080 /lib/x86_64-linux-gnu/libexpat.so.1.6.2
7fe9b0c93000-7fe9b0c95000 r-xp 00000000 fe:01 800981 /lib/x86_64-linux-gnu/libutil-2.24.so
7fe9b0c95000-7fe9b0e94000 ---p 00002000 fe:01 800981 /lib/x86_64-linux-gnu/libutil-2.24.so
7fe9b0e94000-7fe9b0e95000 r--p 00001000 fe:01 800981 /lib/x86_64-linux-gnu/libutil-2.24.so
7fe9b0e95000-7fe9b0e96000 rw-p 00002000 fe:01 800981 /lib/x86_64-linux-gnu/libutil-2.24.so
7fe9b0e9b000-7fe9b0e9e000 r-xp 00000000 fe:01 800926 /lib/x86_64-linux-gnu/libdl-2.24.so
7fe9b0e9e000-7fe9b109d000 ---p 00003000 fe:01 800926 /lib/x86_64-linux-gnu/libdl-2.24.so
7fe9b109d000-7fe9b109e000 r--p 00002000 fe:01 800926 /lib/x86_64-linux-gnu/libdl-2.24.so
7fe9b109e000-7fe9b109f000 rw-p 00003000 fe:01 800926 /lib/x86_64-linux-gnu/libdl-2.24.so
7fe9b10a3000-7fe9b10bb000 r-xp 00000000 fe:01 800971 /lib/x86_64-linux-gnu/libpthread-2.24.so
7fe9b10bb000-7fe9b12ba000 ---p 00018000 fe:01 800971 /lib/x86_64-linux-gnu/libpthread-2.24.so
7fe9b12ba000-7fe9b12bb000 r--p 00017000 fe:01 800971 /lib/x86_64-linux-gnu/libpthread-2.24.so
7fe9b12bb000-7fe9b12bc000 rw-p 00018000 fe:01 800971 /lib/x86_64-linux-gnu/libpthread-2.24.so
7fe9b12bc000-7fe9b12c0000 rw-p 00000000 00:00 0
7fe9b12c3000-7fe9b12e6000 r-xp 00000000 fe:01 800897 /lib/x86_64-linux-gnu/ld-2.24.so
7fe9b12eb000-7fe9b12ec000 r--s 00000000 fe:01 1200209 /home/jenkins/build/libvirt/share/mime/mime.cache
7fe9b12f3000-7fe9b12f4000 r--p 00000000 fe:01 930696 /usr/lib/x86_64-linux-gnu/girepository-1.0/libxml2-2.0.typelib
7fe9b12fb000-7fe9b133b000 rw-p 00000000 00:00 0
7fe9b133b000-7fe9b1342000 r--s 00000000 fe:01 926769 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7fe9b1343000-7fe9b14de000 r--p 00000000 fe:01 916275 /usr/lib/locale/locale-archive
7fe9b14e0000-7fe9b14e1000 rw-p 00000000 00:00 0
7fe9b14e1000-7fe9b14e2000 rwxp 00000000 00:00 0
7fe9b14e2000-7fe9b14e6000 rw-p 00000000 00:00 0
7fe9b14e6000-7fe9b14e7000 r--p 00023000 fe:01 800897 /lib/x86_64-linux-gnu/ld-2.24.so
7fe9b14e7000-7fe9b14e8000 rw-p 00024000 fe:01 800897 /lib/x86_64-linux-gnu/ld-2.24.so
7fe9b14e8000-7fe9b14eb000 rw-p 00000000 00:00 0
7ffc8c0ae000-7ffc8c0cf000 rw-p 00000000 00:00 0 [stack]
7ffc8c19b000-7ffc8c19d000 r--p 00000000 00:00 0 [vvar]
7ffc8c19d000-7ffc8c19f000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
Aborted
Build step 'Execute shell' marked build as failure
5 years, 4 months