libvirt List Archives
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

CI

Thread Start a new thread
Download
Threads by month
  • ----- 2026 -----
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
ci@lists.libvirt.org

September 2018

  • 2 participants
  • 142 discussions
[Libvirt-ci] Still Failing: libvirt/libvirt#1719 (master - e6d77a7)
by Travis CI 25 Sep '18

25 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1719 Status: Still Failing Duration: 18 mins and 31 secs Commit: e6d77a7 (master) Author: Jiri Denemark Message: qemu: Avoid duplicate resume events and state changes The only place where VIR_DOMAIN_EVENT_RESUMED should be generated is the RESUME event handler to make sure we don't generate duplicate events or state changes. In the worse case the duplicity can revert or cover changes done by other event handlers. For example, after QEMU sent RESUME, BLOCK_IO_ERROR, and STOP events we could happily mark the domain as running and report VIR_DOMAIN_EVENT_RESUMED to registered clients. https://bugzilla.redhat.com/show_bug.cgi?id=1612943 Signed-off-by: Jiri Denemark <jdenemar(a)redhat.com> Reviewed-by: John Ferlan <jferlan(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/7882c6eca53f...e6d77a75c4bf View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/433098800?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Still Failing: libvirt/libvirt#1718 (master - 7882c6e)
by Travis CI 25 Sep '18

25 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1718 Status: Still Failing Duration: 19 mins and 18 secs Commit: 7882c6e (master) Author: Mark Asselstine Message: lxc_monitor: Avoid AB / BA lock race A deadlock situation can occur when autostarting a LXC domain 'guest' due to two threads attempting to take opposing locks while holding opposing locks (AB BA problem). Thread A takes and holds the 'vm' lock while attempting to take the 'client' lock, meanwhile, thread B takes and holds the 'client' lock while attempting to take the 'vm' lock. The potential for this can be seen as follows: Thread A: virLXCProcessAutostartDomain (takes vm lock) --> virLXCProcessStart --> virLXCProcessConnectMonitor --> virLXCMonitorNew --> virNetClientSetCloseCallback (wants client lock) Thread B: virNetClientIncomingEvent (takes client lock) --> virNetClientIOHandleInput --> virNetClientCallDispatch --> virNetClientCallDispatchMessage --> virNetClientProgramDispatch --> virLXCMonitorHandleEventInit --> virLXCProcessMonitorInitNotify (wants vm lock) Since these threads are scheduled independently and are preemptible it is possible for the deadlock scenario to occur where each thread locks their first lock but both will fail to get their second lock and just spin forever. You get something like: virLXCProcessAutostartDomain (takes vm lock) --> virLXCProcessStart --> virLXCProcessConnectMonitor --> virLXCMonitorNew <...> virNetClientIncomingEvent (takes client lock) --> virNetClientIOHandleInput --> virNetClientCallDispatch --> virNetClientCallDispatchMessage --> virNetClientProgramDispatch --> virLXCMonitorHandleEventInit --> virLXCProcessMonitorInitNotify (wants vm lock but spins) <...> --> virNetClientSetCloseCallback (wants client lock but spins) Neither thread ever gets the lock it needs to be able to continue while holding the lock that the other thread needs. The actual window for preemption which can cause this deadlock is rather small, between the calls to virNetClientProgramNew() and execution of virNetClientSetCloseCallback(), both in virLXCMonitorNew(). But it can be seen in real world use that this small window is enough. By moving the call to virNetClientSetCloseCallback() ahead of virNetClientProgramNew() we can close any possible chance of the deadlock taking place. There should be no other implications to the move since the close callback (in the unlikely event was called) will spin on the vm lock. The remaining work that takes place between the old call location of virNetClientSetCloseCallback() and the new location is unaffected by the move. Signed-off-by: Mark Asselstine <mark.asselstine(a)windriver.com> Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/65ba48d26745...7882c6eca53f View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/433006111?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Still Failing: libvirt/libvirt#1717 (master - 65ba48d)
by Travis CI 25 Sep '18

25 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1717 Status: Still Failing Duration: 18 mins and 14 secs Commit: 65ba48d (master) Author: Pavel Hrdina Message: vircgroup: rename controllers to legacy With the introduction of cgroup v2 there are new names used with cgroups based on which version is used: - legacy: cgroup v1 - unified: cgroup v2 - hybrid: cgroup v1 and cgroup v2 Let's use 'legacy' instead of 'cgroupv1' or 'controllers' in our code. Reviewed-by: Fabiano Fidêncio <fidencio(a)redhat.com> Reviewed-by: Ján Tomko <jtomko(a)redhat.com> Signed-off-by: Pavel Hrdina <phrdina(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/8b62008d2bc5...65ba48d26745 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/432924634?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Still Failing: libvirt/libvirt#1716 (master - 8b62008)
by Travis CI 25 Sep '18

25 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1716 Status: Still Failing Duration: 21 mins and 2 secs Commit: 8b62008 (master) Author: Pavel Hrdina Message: vircgrouptest: call virCgroupNewSelf instead virCgroupDetectMounts This will be required once cgroup v2 is introduced. The cgroup detection is not simple and we will have multiple backends so we should not just jump into the middle of the detection code. In order to use virCgroupNewSelf we need to create all the remaining data files: - {name}.cgroups represents /proc/cgroups, it is a list of cgroup controllers compiled into kernel - {name}.self.cgroup represents /proc/self/cgroup, it describes cgroups to which the process belongs For "no-cgroups" we need to modify the expected behavior because virCgroupNewSelf() will fail if there are no controllers available. Reviewed-by: Fabiano Fidêncio <fidencio(a)redhat.com> Reviewed-by: Ján Tomko <jtomko(a)redhat.com> Signed-off-by: Pavel Hrdina <phrdina(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/95d19cd01591...8b62008d2bc5 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/432887567?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Broken: libvirt/libvirt#1715 (master - 95d19cd)
by Travis CI 25 Sep '18

25 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1715 Status: Broken Duration: 20 mins and 17 secs Commit: 95d19cd (master) Author: Marek Marczykowski-Górecki Message: libxl: prefer new location of nested_hvm in libxl_domain_build_info If available, use b_info->nested_hvm instead of b_info->u.hvm.nested_hvm. This will make nested HVM config available also for PVH domains. Signed-off-by: Marek Marczykowski-Górecki <marmarek(a)invisiblethingslab.com> Reviewed-by: Jim Fehlig <jfehlig(a)suse.com> View the changeset: https://github.com/libvirt/libvirt/compare/996f101431a2...95d19cd01591 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/432772301?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-freebsd-10 #39
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/39/…> ------------------------------------------ [...truncated 3.85 KB...] Making check in data gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> Making check in docs gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> Making check in src gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> Making check in tests gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> /usr/local/bin/gmake test_util gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> CC test_util-test_util.o CCLD test_util gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> /usr/local/bin/gmake check-TESTS gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> PASS: test_util PASS: test_interface.py PASS: test_domain.py PASS: test_network.py FAIL: test_connect.py PASS: test_nodedev.py PASS: test_storage.py ============================================================================ Testsuite summary for libvirt-dbus 1.3.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 '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> gmake[2]: *** [Makefile:874: check-TESTS] Error 2 gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> gmake[1]: *** [Makefile:990: check-am] Error 2 gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/…'> gmake: *** [Makefile:460: check-recursive] Error 1 + cat tests/test-suite.log ============================================== libvirt-dbus 1.3.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 freebsd10 -- Python 3.6.5, pytest-3.4.2, py-1.5.3, pluggy-0.6.0 rootdir: /usr<https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-freebsd-10/ws/,> inifile: collected 35 items ../../tests/test_connect.py ......E........E..................E [100%] ==================================== ERRORS ==================================== ___________ ERROR at setup of TestConnect.test_connect_list_domains ____________ self = <test_connect.TestConnect object at 0x809560710> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_connect_list_domains'>> @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 0x809504e48> @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/local/lib/python3.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/local/lib/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x8090b46d0> bus_name = dbus.String(':1.7') 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.7> 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/local/lib/python3.6/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 0x809606160> @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:122: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/local/lib/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x8090b46d0> bus_name = dbus.String(':1.7') 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.7> 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/local/lib/python3.6/site-packages/dbus/connection.py:651: DBusException ===================== 32 passed, 3 error in 14.54 seconds ====================== FAIL test_connect.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt+mingw64-build » libvirt-fedora-rawhide #58
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…> Changes: [mprivozn] virsh: Implement vsh-table to iface-list [mprivozn] virsh: Implement vshTable API to net-list and net-dhcp-leases [mprivozn] virsh: Implement vshTable API to secret-list [mprivozn] virsh: Implement vshTable API to nwfilter-list and nwfilterbinding-list [mprivozn] virsh: Implement vshTable API to snapshot-list. [mprivozn] virsh: Set up cmdDomblkinfo() and cmdDomblkinfoPrint() for vshTable API [mprivozn] virsh: Implement vshTable API to domblkinfo [mprivozn] virsh: Implement vshTable API to domblklist [mprivozn] virsh: Implement vshTable API to domiflist [mprivozn] virsh: Implement vshTable API to vcpupin, iothreadinfo, domfsinfo [mprivozn] virsh: Implement vshTable API to pool-list [mprivozn] virsh: Implement vshTable API to vol-list [mprivozn] virt-admin: Implement vshTable API to server-list and client-list [mprivozn] util: Fix misaligned arguments and misaligned conditions for [mprivozn] build-aux:check-spacing: Add wrapper function of CheckFunctionBody [mprivozn] build-aux:check-spacing: Add wrapper function of KillComments [mprivozn] build-aux:check-spacing: Add wrapper function of CheckWhiteSpaces [mprivozn] build-aux:check-spacing: Add wrapper function of CheckCurlyBrackets [mprivozn] build-aux:check-spacing: Introduce a new rule to check misaligned stuff ------------------------------------------ [...truncated 138.05 KB...] CC util/libvirt_util_la-virfirmware.lo CC util/libvirt_util_la-virgettext.lo CC util/libvirt_util_la-virgic.lo CC util/libvirt_util_la-virhash.lo CC util/libvirt_util_la-virhashcode.lo CC util/libvirt_util_la-virhook.lo CC util/libvirt_util_la-virhostcpu.lo CC util/libvirt_util_la-virhostdev.lo CC util/libvirt_util_la-virhostmem.lo CC util/libvirt_util_la-viridentity.lo CC util/libvirt_util_la-virinitctl.lo CC util/libvirt_util_la-viriptables.lo CC util/libvirt_util_la-viriscsi.lo CC util/libvirt_util_la-virjson.lo CC util/libvirt_util_la-virkeycode.lo CC util/libvirt_util_la-virkeyfile.lo CC util/libvirt_util_la-virlease.lo CC util/libvirt_util_la-virlockspace.lo CC util/libvirt_util_la-virlog.lo CC util/libvirt_util_la-virmacaddr.lo CC util/libvirt_util_la-virmacmap.lo CC util/libvirt_util_la-virmodule.lo CC util/libvirt_util_la-virnetdev.lo CC util/libvirt_util_la-virnetdevbandwidth.lo CC util/libvirt_util_la-virnetdevbridge.lo CC util/libvirt_util_la-virnetdevip.lo CC util/libvirt_util_la-virnetdevmacvlan.lo CC util/libvirt_util_la-virnetdevmidonet.lo CC util/libvirt_util_la-virnetdevopenvswitch.lo CC util/libvirt_util_la-virnetdevtap.lo CC util/libvirt_util_la-virnetdevveth.lo CC util/libvirt_util_la-virnetdevvlan.lo CC util/libvirt_util_la-virnetdevvportprofile.lo CC util/libvirt_util_la-virnetlink.lo CC util/libvirt_util_la-virnodesuspend.lo CC util/libvirt_util_la-virkmod.lo CC util/libvirt_util_la-virnuma.lo CC util/libvirt_util_la-virobject.lo CC util/libvirt_util_la-virpci.lo CC util/libvirt_util_la-virpidfile.lo CC util/libvirt_util_la-virpolkit.lo CC util/libvirt_util_la-virportallocator.lo CC util/libvirt_util_la-virprocess.lo CC util/libvirt_util_la-virqemu.lo CC util/libvirt_util_la-virrandom.lo CC util/libvirt_util_la-virresctrl.lo CC util/libvirt_util_la-virrotatingfile.lo CC util/libvirt_util_la-virscsi.lo CC util/libvirt_util_la-virscsihost.lo CC util/libvirt_util_la-virscsivhost.lo CC util/libvirt_util_la-virseclabel.lo CC util/libvirt_util_la-virsecret.lo CC util/libvirt_util_la-virsexpr.lo CC util/libvirt_util_la-virsocketaddr.lo CC util/libvirt_util_la-virstorageencryption.lo CC util/libvirt_util_la-virstoragefile.lo CC util/libvirt_util_la-virstoragefilebackend.lo CC util/libvirt_util_la-virstring.lo CC util/libvirt_util_la-virsysinfo.lo CC util/libvirt_util_la-virsystemd.lo CC util/libvirt_util_la-virthread.lo CC util/libvirt_util_la-virthreadjob.lo CC util/libvirt_util_la-virthreadpool.lo CC util/libvirt_util_la-virtime.lo CC util/libvirt_util_la-virtpm.lo CC util/libvirt_util_la-virtypedparam.lo CC util/libvirt_util_la-virusb.lo CC util/libvirt_util_la-viruri.lo CC util/libvirt_util_la-virutil.lo CC util/libvirt_util_la-viruuid.lo CC util/libvirt_util_la-virvhba.lo CC util/libvirt_util_la-virvsock.lo CC util/libvirt_util_la-virxml.lo CC util/libvirt_util_la-virmdev.lo CC util/libvirt_util_la-virfilecache.lo CC conf/libvirt_conf_la-netdev_bandwidth_conf.lo CC conf/libvirt_conf_la-netdev_vport_profile_conf.lo CC conf/libvirt_conf_la-netdev_vlan_conf.lo CC conf/libvirt_conf_la-capabilities.lo CC conf/libvirt_conf_la-domain_addr.lo CC conf/libvirt_conf_la-domain_capabilities.lo CC conf/libvirt_conf_la-domain_conf.lo CC conf/libvirt_conf_la-domain_audit.lo CC conf/libvirt_conf_la-domain_nwfilter.lo CC conf/libvirt_conf_la-virsavecookie.lo CC conf/libvirt_conf_la-snapshot_conf.lo CC conf/libvirt_conf_la-numa_conf.lo CC conf/libvirt_conf_la-virdomainobjlist.lo CC conf/libvirt_conf_la-object_event.lo CC conf/libvirt_conf_la-domain_event.lo CC conf/libvirt_conf_la-network_event.lo CC conf/libvirt_conf_la-storage_event.lo CC conf/libvirt_conf_la-node_device_event.lo CC conf/libvirt_conf_la-secret_event.lo CC conf/libvirt_conf_la-network_conf.lo CC conf/libvirt_conf_la-virnetworkobj.lo CC conf/libvirt_conf_la-networkcommon_conf.lo CC conf/libvirt_conf_la-nwfilter_params.lo CC conf/libvirt_conf_la-nwfilter_ipaddrmap.lo CC conf/libvirt_conf_la-nwfilter_conf.lo CC conf/libvirt_conf_la-virnwfilterobj.lo CC conf/libvirt_conf_la-virnwfilterbindingdef.lo CC conf/libvirt_conf_la-virnwfilterbindingobj.lo CC conf/libvirt_conf_la-virnwfilterbindingobjlist.lo CC conf/libvirt_conf_la-node_device_conf.lo CC conf/libvirt_conf_la-virnodedeviceobj.lo CC conf/libvirt_conf_la-storage_adapter_conf.lo CC conf/libvirt_conf_la-storage_conf.lo CC conf/libvirt_conf_la-virstorageobj.lo CC conf/libvirt_conf_la-interface_conf.lo CC conf/libvirt_conf_la-virinterfaceobj.lo CC conf/libvirt_conf_la-secret_conf.lo CC conf/libvirt_conf_la-virsecretobj.lo CC conf/libvirt_conf_la-cpu_conf.lo CC conf/libvirt_conf_la-virchrdev.lo CC conf/libvirt_conf_la-device_conf.lo CC cpu/libvirt_cpu_la-cpu.lo CC cpu/libvirt_cpu_la-cpu_x86.lo CC cpu/libvirt_cpu_la-cpu_s390.lo CC cpu/libvirt_cpu_la-cpu_arm.lo CC cpu/libvirt_cpu_la-cpu_ppc64.lo CC cpu/libvirt_cpu_la-cpu_map.lo CC security/libvirt_security_manager_la-security_driver.lo CC security/libvirt_security_manager_la-security_nop.lo CC security/libvirt_security_manager_la-security_stack.lo CC security/libvirt_security_manager_la-security_dac.lo CC security/libvirt_security_manager_la-security_manager.lo CC access/libvirt_driver_access_la-viraccessperm.lo CC access/libvirt_driver_access_la-viraccessmanager.lo CC access/libvirt_driver_access_la-viraccessdrivernop.lo CC access/libvirt_driver_access_la-viraccessdriverstack.lo CC access/libvirt_driver_access_la-viraccessapicheck.lo CC access/libvirt_driver_access_la-viraccessapicheckqemu.lo CC access/libvirt_driver_access_la-viraccessapichecklxc.lo CC access/libvirt_driver_access_la-viraccessdriverpolkit.lo CC rpc/libvirt_net_rpc_la-virnetmessage.lo CC rpc/libvirt_net_rpc_la-virnettlscontext.lo CC rpc/libvirt_net_rpc_la-virnetsocket.lo CC rpc/libvirt_net_rpc_la-virkeepalive.lo CC rpc/libvirt_net_rpc_la-virnetprotocol.lo CC rpc/libvirt_net_rpc_la-virkeepaliveprotocol.lo CC rpc/libvirt_net_rpc_la-virnetsshsession.lo CC rpc/libvirt_net_rpc_server_la-virnetserverprogram.lo CC rpc/libvirt_net_rpc_server_la-virnetserverservice.lo CC rpc/libvirt_net_rpc_server_la-virnetserverclient.lo CC rpc/libvirt_net_rpc_server_la-virnetservermdns.lo CC rpc/libvirt_net_rpc_server_la-virnetdaemon.lo CC rpc/libvirt_net_rpc_server_la-virnetserver.lo CC rpc/libvirt_net_rpc_client_la-virnetclientprogram.lo CC rpc/libvirt_net_rpc_client_la-virnetclientstream.lo CC rpc/libvirt_net_rpc_client_la-virnetclient.lo CC phyp/libvirt_driver_phyp_la-phyp_driver.lo CC test/libvirt_driver_test_la-test_driver.lo CC esx/libvirt_driver_esx_la-esx_driver.lo CC esx/libvirt_driver_esx_la-esx_interface_driver.lo CC esx/libvirt_driver_esx_la-esx_network_driver.lo CC esx/libvirt_driver_esx_la-esx_storage_driver.lo CC esx/libvirt_driver_esx_la-esx_storage_backend_vmfs.lo CC esx/libvirt_driver_esx_la-esx_storage_backend_iscsi.lo CC esx/libvirt_driver_esx_la-esx_stream.lo CC esx/libvirt_driver_esx_la-esx_util.lo CC esx/libvirt_driver_esx_la-esx_vi.lo CC esx/libvirt_driver_esx_la-esx_vi_methods.lo CC esx/libvirt_driver_esx_la-esx_vi_types.lo CC vmx/libvirt_vmx_la-vmx.lo CC vmware/libvirt_driver_vmware_la-vmware_driver.lo CC vmware/libvirt_driver_vmware_la-vmware_conf.lo CC secret/libvirt_secret_la-secret_util.lo CC remote/libvirt_driver_remote_la-remote_driver.lo CC remote/libvirt_driver_remote_la-remote_protocol.lo CC remote/libvirt_driver_remote_la-lxc_protocol.lo CC remote/libvirt_driver_remote_la-qemu_protocol.lo CC logging/libvirt_driver_la-log_protocol.lo CC logging/libvirt_driver_la-log_manager.lo CC locking/libvirt_driver_la-lock_manager.lo CC locking/libvirt_driver_la-lock_driver_nop.lo CC locking/libvirt_driver_la-domain_lock.lo CC admin/libvirt_admin_la-admin_protocol.lo CCLD libvirt_driver_admin.la GEN util/virkeycode-linux.7 GEN util/virkeycode-osx.7 GEN util/virkeycode-atset1.7 GEN util/virkeycode-atset2.7 GEN util/virkeycode-atset3.7 GEN util/virkeycode-xtkbd.7 GEN util/virkeycode-usb.7 GEN util/virkeycode-win32.7 GEN util/virkeycode-qnum.7 GEN util/virkeyname-linux.7 GEN util/virkeyname-osx.7 GEN util/virkeyname-win32.7 CCLD libvirt_util.la CCLD libvirt_conf.la CCLD libvirt_cpu.la CCLD libvirt_security_manager.la CCLD libvirt_driver_access.la CCLD libvirt-net-rpc.la CCLD libvirt-net-rpc-server.la CCLD libvirt-net-rpc-client.la CCLD libvirt_driver_phyp.la CCLD libvirt_driver_test.la CCLD libvirt_driver_esx.la CCLD libvirt_vmx.la CCLD libvirt_driver_vmware.la CCLD libvirt_secret.la CCLD libvirt_driver_remote.la CCLD libvirt_driver.la CCLD libvirt.la CCLD libvirt-qemu.la CCLD libvirt-lxc.la CCLD libvirt-admin.la rm util/virkeyname-osx.pod util/virkeycode-xtkbd.pod util/virkeycode-atset3.pod util/virkeycode-usb.pod util/virkeycode-qnum.pod util/virkeycode-win32.pod util/virkeyname-linux.pod util/virkeycode-osx.pod util/virkeycode-linux.pod util/virkeycode-atset1.pod util/virkeyname-win32.pod util/virkeycode-atset2.pod gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…'> Making all in tools gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…'> GEN libvirt-guests.sh /usr/bin/gmake all-am gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…'> CC virsh-virsh.o CC virsh-virsh-completer.o CC virsh-virsh-console.o CC virsh-virsh-domain.o CC virsh-virsh-domain-monitor.o CC virsh-virsh-host.o CC virsh-virsh-interface.o CC virsh-virsh-network.o CC virsh-virsh-nodedev.o CC virsh-virsh-nwfilter.o CC virsh-virsh-pool.o CC virsh-virsh-secret.o In file included from ../../tools/virsh-domain.c:53: ../../tools/virsh-domain.c: In function 'virshVcpuPinQuery': ../../tools/virsh-domain.c:6952:39: error: format '%lu' expects argument of type 'long unsigned int', but argument 8 has type 'size_t' {aka 'long long unsigned int'} [-Werror=format=] if (virAsprintf(&vcpuStr, "%lu", i) < 0) ^~~~~ ~ ../../src/util/virstring.h:261:31: note: in definition of macro 'virAsprintf' strp, __VA_ARGS__) ^~~~~~~~~~~ cc1: all warnings being treated as errors gmake[3]: *** [Makefile:2909: virsh-virsh-domain.o] Error 1 gmake[3]: *** Waiting for unfinished jobs.... gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…'> gmake[2]: *** [Makefile:2430: all] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…'> gmake[1]: *** [Makefile:2111: all-recursive] Error 1 gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw64-build/systems=libvirt-fedora-rawh…'> gmake: *** [Makefile:2004: all] Error 2 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-fedora-rawhide #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/7/…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-fedora-rawhide (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins7216577744405053523.sh + export LIBOSINFO_NETWORK_TESTS=1 + LIBOSINFO_NETWORK_TESTS=1 + cd build + /usr/bin/gmake check GEN public-submodule-commit Making check in osinfo gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> /usr/bin/gmake check-am gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> /usr/bin/gmake check-local gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> GEN check-symfile GEN check-symsorting gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> Making check in tools gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> Making check in docs gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> Making check in reference gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[2]: Nothing to be done for 'check-am'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> Making check in po gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> INTLTOOL_EXTRACT="/usr/bin/intltool-extract" XGETTEXT="/usr/bin/xgettext" srcdir=../../po /usr/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> Making check in examples gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> Making check in tests gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> /usr/bin/gmake test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platform-test-platform.o CC test_platformlist-test-platformlist.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-mediauris CCLD test-treeuris gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> /usr/bin/gmake check-TESTS gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> PASS: test-list PASS: test-entity PASS: test-device PASS: test-filter PASS: test-devicelist PASS: test-product PASS: test-oslist PASS: test-os PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-install-script PASS: test-loader PASS: test-os-resources PASS: test-treeuris ../../build-aux/test-driver: line 107: 14604 Aborted (core dumped) "$@" > $log_file 2>&1 FAIL: test-mediauris PASS: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1313: test-suite.log] Error 1 gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[2]: *** [Makefile:1421: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[1]: *** [Makefile:1614: check-am] Error 2 gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) FAIL test-mediauris (exit status: 134) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-fedora-28 #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/7/displ…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-fedora-28 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins3294908914346839213.sh + export LIBOSINFO_NETWORK_TESTS=1 + LIBOSINFO_NETWORK_TESTS=1 + cd build + /usr/bin/gmake check GEN public-submodule-commit Making check in osinfo gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> /usr/bin/gmake check-am gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> /usr/bin/gmake check-local gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> GEN check-symfile GEN check-symsorting gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> Making check in tools gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> Making check in docs gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> Making check in reference gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[2]: Nothing to be done for 'check-am'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> Making check in po gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> INTLTOOL_EXTRACT="/usr/bin/intltool-extract" XGETTEXT="/usr/bin/xgettext" srcdir=../../po /usr/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> Making check in examples gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> Making check in tests gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> /usr/bin/gmake test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platform-test-platform.o CC test_platformlist-test-platformlist.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-mediauris CCLD test-treeuris gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> /usr/bin/gmake check-TESTS gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> PASS: test-device PASS: test-entity PASS: test-list PASS: test-devicelist PASS: test-product PASS: test-filter PASS: test-os PASS: test-oslist PASS: test-productfilter PASS: test-db PASS: test-platform PASS: test-platformlist PASS: test-install-script PASS: test-loader PASS: test-os-resources PASS: test-treeuris ../../build-aux/test-driver: line 107: 2321 Aborted (core dumped) "$@" > $log_file 2>&1 FAIL: test-mediauris PASS: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1289: test-suite.log] Error 1 gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[2]: *** [Makefile:1397: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[1]: *** [Makefile:1587: check-am] Error 2 gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) FAIL test-mediauris (exit status: 134) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-debian-8 #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/7/displa…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-debian-8 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins939811086419435492.sh + export LIBOSINFO_NETWORK_TESTS=1 + cd build + /usr/bin/make check GEN public-submodule-commit Making check in osinfo make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> /usr/bin/make check-am make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> /usr/bin/make check-local make[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> GEN check-symsorting GEN check-symfile make[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Making check in tools make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[1]: Nothing to be done for 'check'. make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Making check in docs make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Making check in reference make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[2]: Nothing to be done for 'check'. make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[2]: Nothing to be done for 'check-am'. make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Making check in po make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> INTLTOOL_EXTRACT="/usr/bin/intltool-extract" XGETTEXT="/usr/bin/xgettext" srcdir=../../po /usr/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Making check in examples make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[1]: Nothing to be done for 'check'. make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Making check in tests make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> /usr/bin/make test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platformlist-test-platformlist.o CC test_platform-test-platform.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-mediauris CCLD test-treeuris make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> /usr/bin/make check-TESTS make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> PASS: test-device PASS: test-entity PASS: test-list PASS: test-devicelist PASS: test-product PASS: test-os PASS: test-filter PASS: test-oslist PASS: test-productfilter PASS: test-platformlist PASS: test-platform PASS: test-db PASS: test-install-script PASS: test-loader PASS: test-os-resources PASS: test-treeuris ../../build-aux/test-driver: line 107: 15584 Aborted "$@" > $log_file 2>&1 FAIL: test-mediauris PASS: test-isodetect make[4]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> make[4]: Nothing to be done for 'all'. make[4]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ Makefile:1278: recipe for target 'test-suite.log' failed make[3]: *** [test-suite.log] Error 1 make[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Makefile:1384: recipe for target 'check-TESTS' failed make[2]: *** [check-TESTS] Error 2 make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Makefile:1576: recipe for target 'check-am' failed make[1]: *** [check-am] Error 2 make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> Makefile:584: recipe for target 'check-recursive' failed make: *** [check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-debian-9 #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/7/displa…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-debian-9 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins3224038959810989481.sh + export LIBOSINFO_NETWORK_TESTS=1 + cd build + /usr/bin/make check GEN public-submodule-commit Making check in osinfo make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> /usr/bin/make check-am make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> /usr/bin/make check-local make[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> GEN check-symsorting GEN check-symfile make[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Making check in tools make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[1]: Nothing to be done for 'check'. make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Making check in docs make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Making check in reference make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[2]: Nothing to be done for 'check'. make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[2]: Nothing to be done for 'check-am'. make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Making check in po make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> INTLTOOL_EXTRACT="/usr/bin/intltool-extract" XGETTEXT="/usr/bin/xgettext" srcdir=../../po /usr/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/bin/intltool-update -m Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ?PACKAGE_NAME}?/ at /usr/bin/intltool-update line 1071, <CONF> line 295. if [ -r missing -o -r notexist ]; then \ exit 1; \ fi make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Making check in examples make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[1]: Nothing to be done for 'check'. make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Making check in tests make[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> /usr/bin/make test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> CC test_device-test-device.o CC test_list-test-list.o CC test_entity-test-entity.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platformlist-test-platformlist.o CC test_platform-test-platform.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-mediauris CCLD test-treeuris make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> /usr/bin/make check-TESTS make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> make[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> PASS: test-list PASS: test-entity PASS: test-device PASS: test-filter PASS: test-product PASS: test-devicelist PASS: test-productfilter PASS: test-oslist PASS: test-os PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-install-script PASS: test-loader PASS: test-os-resources PASS: test-treeuris ../../build-aux/test-driver: line 107: 28518 Aborted "$@" > $log_file 2>&1 FAIL: test-mediauris PASS: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ Makefile:1289: recipe for target 'test-suite.log' failed make[3]: *** [test-suite.log] Error 1 make[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Makefile:1395: recipe for target 'check-TESTS' failed make[2]: *** [check-TESTS] Error 2 make[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Makefile:1587: recipe for target 'check-am' failed make[1]: *** [check-am] Error 2 make[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/ws/build…'> Makefile:595: recipe for target 'check-recursive' failed make: *** [check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) FAIL test-mediauris (exit status: 134) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-freebsd-10 #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/7/disp…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-freebsd-10 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins6799853452488002826.sh + export LIBOSINFO_NETWORK_TESTS=1 + cd build + /usr/local/bin/gmake check Making check in osinfo GEN public-submodule-commit gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> /usr/local/bin/gmake check-am gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> /usr/local/bin/gmake check-local gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> GEN check-symsorting gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> Making check in tools gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> Making check in docs gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> Making check in reference gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[2]: Nothing to be done for 'check-am'. gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> Making check in po gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> INTLTOOL_EXTRACT="/usr/local/bin/intltool-extract" XGETTEXT="/usr/local/bin/xgettext" srcdir=../../po /usr/local/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/local/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> Making check in examples gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> Making check in tests gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> /usr/local/bin/gmake test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platform-test-platform.o CC test_platformlist-test-platformlist.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-treeuris CCLD test-mediauris gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> /usr/local/bin/gmake check-TESTS gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> PASS: test-entity PASS: test-list PASS: test-device PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-os PASS: test-productfilter PASS: test-oslist PASS: test-platform PASS: test-db PASS: test-platformlist PASS: test-install-script PASS: test-os-resources PASS: test-loader PASS: test-treeuris Abort trap (core dumped) FAIL: test-mediauris PASS: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1313: test-suite.log] Error 1 gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[2]: *** [Makefile:1421: check-TESTS] Error 2 gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake[1]: *** [Makefile:1614: check-am] Error 2 gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-10/ws/bui…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) FAIL test-mediauris (exit status: 134) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-freebsd-11 #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/7/disp…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-freebsd-11 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins7755430109720142210.sh + export 'LIBOSINFO_NETWORK_TESTS=1' + cd build + /usr/local/bin/gmake check Making check in osinfo GEN public-submodule-commit gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> /usr/local/bin/gmake check-am gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> /usr/local/bin/gmake check-local gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> GEN check-symsorting gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> Making check in tools gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> Making check in docs gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> Making check in reference gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[2]: Nothing to be done for 'check-am'. gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> Making check in po gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> INTLTOOL_EXTRACT="/usr/local/bin/intltool-extract" XGETTEXT="/usr/local/bin/xgettext" srcdir=../../po /usr/local/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/local/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> Making check in examples gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> Making check in tests gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> /usr/local/bin/gmake test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platform-test-platform.o CC test_platformlist-test-platformlist.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-mediauris CCLD test-treeuris gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> /usr/local/bin/gmake check-TESTS gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> PASS: test-entity PASS: test-list PASS: test-device PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-os PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-install-script PASS: test-loader PASS: test-os-resources PASS: test-treeuris Abort trap (core dumped) FAIL: test-mediauris PASS: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1313: test-suite.log] Error 1 gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[2]: *** [Makefile:1421: check-TESTS] Error 2 gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake[1]: *** [Makefile:1614: check-am] Error 2 gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/ws/bui…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) FAIL test-mediauris (exit status: 134) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-fedora-27 #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/7/displ…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-fedora-27 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins3842952325375300330.sh + export LIBOSINFO_NETWORK_TESTS=1 + LIBOSINFO_NETWORK_TESTS=1 + cd build + /usr/bin/gmake check GEN public-submodule-commit Making check in osinfo gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> /usr/bin/gmake check-am gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> /usr/bin/gmake check-local gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> GEN check-symfile GEN check-symsorting gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> Making check in tools gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> Making check in docs gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> Making check in reference gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[2]: Nothing to be done for 'check-am'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> Making check in po gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> INTLTOOL_EXTRACT="/usr/bin/intltool-extract" XGETTEXT="/usr/bin/xgettext" srcdir=../../po /usr/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> Making check in examples gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> Making check in tests gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> /usr/bin/gmake test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platform-test-platform.o CC test_platformlist-test-platformlist.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-mediauris CCLD test-treeuris gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> /usr/bin/gmake check-TESTS gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> PASS: test-list PASS: test-device PASS: test-entity PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-os PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-install-script PASS: test-loader PASS: test-os-resources PASS: test-treeuris ../../build-aux/test-driver: line 107: 11946 Aborted (core dumped) "$@" > $log_file 2>&1 FAIL: test-mediauris PASS: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1289: test-suite.log] Error 1 gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[2]: *** [Makefile:1397: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake[1]: *** [Makefile:1587: check-am] Error 2 gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-27/ws/buil…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) FAIL test-mediauris (exit status: 134) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-centos-7 #7
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/7/displa…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 7 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 7 originally caused by: Started by upstream project "libosinfo-build" build number 7 originally caused by: Started by upstream project "osinfo-db-build" build number 5 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-centos-7 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins463357379862656243.sh + export LIBOSINFO_NETWORK_TESTS=1 + LIBOSINFO_NETWORK_TESTS=1 + cd build + /usr/bin/gmake check Making check in osinfo GEN public-submodule-commit gmake[1]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> /usr/bin/gmake check-am gmake[2]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> /usr/bin/gmake check-local gmake[3]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> GEN check-symsorting GEN check-symfile gmake[3]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[2]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[1]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> Making check in tools gmake[1]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[1]: Nothing to be done for `check'. gmake[1]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> Making check in docs gmake[1]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> Making check in reference gmake[2]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[2]: Nothing to be done for `check'. gmake[2]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[2]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[2]: Nothing to be done for `check-am'. gmake[2]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[1]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> Making check in po gmake[1]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> INTLTOOL_EXTRACT="/usr/bin/intltool-extract" XGETTEXT="/usr/bin/xgettext" srcdir=../../po /usr/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> Making check in examples gmake[1]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[1]: Nothing to be done for `check'. gmake[1]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> Making check in tests gmake[1]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> /usr/bin/gmake test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-os-resources test-mediauris test-treeuris gmake[2]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_filter-test-filter.o CC test_devicelist-test-devicelist.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platform-test-platform.o CC test_platformlist-test-platformlist.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_os_resources-test-os-resources.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-os-resources CCLD test-mediauris CCLD test-treeuris gmake[2]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> /usr/bin/gmake check-TESTS gmake[2]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[3]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> PASS: test-entity PASS: test-list PASS: test-device PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-oslist PASS: test-os PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-install-script PASS: test-loader PASS: test-os-resources ../../build-aux/test-driver: line 95: 15028 Aborted "$@" > $log_file 2>&1 FAIL: test-mediauris PASS: test-treeuris PASS: test-isodetect gmake[4]: Entering directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> ============================================================================ Testsuite summary for libosinfo 1.3.0 ============================================================================ # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [test-suite.log] Error 1 gmake[3]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[2]: *** [check-TESTS] Error 2 gmake[2]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake[1]: *** [check-am] Error 2 gmake[1]: Leaving directory `<https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/ws/build…'> gmake: *** [check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.3.0: tests/test-suite.log =========================================== # TOTAL: 18 # PASS: 17 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-mediauris ==================== /mediauris/uris: ** ERROR:../../tests/test-mediauris.c:50:test_media: assertion failed (res == CURLE_OK): (22 == 0) + exit 1 Build step 'Execute shell' marked build as failure
1 4
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt+mingw32-build » libvirt-fedora-rawhide #58
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…> Changes: [mprivozn] virsh: Implement vsh-table to iface-list [mprivozn] virsh: Implement vshTable API to net-list and net-dhcp-leases [mprivozn] virsh: Implement vshTable API to secret-list [mprivozn] virsh: Implement vshTable API to nwfilter-list and nwfilterbinding-list [mprivozn] virsh: Implement vshTable API to snapshot-list. [mprivozn] virsh: Set up cmdDomblkinfo() and cmdDomblkinfoPrint() for vshTable API [mprivozn] virsh: Implement vshTable API to domblkinfo [mprivozn] virsh: Implement vshTable API to domblklist [mprivozn] virsh: Implement vshTable API to domiflist [mprivozn] virsh: Implement vshTable API to vcpupin, iothreadinfo, domfsinfo [mprivozn] virsh: Implement vshTable API to pool-list [mprivozn] virsh: Implement vshTable API to vol-list [mprivozn] virt-admin: Implement vshTable API to server-list and client-list [mprivozn] util: Fix misaligned arguments and misaligned conditions for [mprivozn] build-aux:check-spacing: Add wrapper function of CheckFunctionBody [mprivozn] build-aux:check-spacing: Add wrapper function of KillComments [mprivozn] build-aux:check-spacing: Add wrapper function of CheckWhiteSpaces [mprivozn] build-aux:check-spacing: Add wrapper function of CheckCurlyBrackets [mprivozn] build-aux:check-spacing: Introduce a new rule to check misaligned stuff ------------------------------------------ [...truncated 136.43 KB...] CC util/libvirt_util_la-virfirmware.lo CC util/libvirt_util_la-virgettext.lo CC util/libvirt_util_la-virgic.lo CC util/libvirt_util_la-virhash.lo CC util/libvirt_util_la-virhashcode.lo CC util/libvirt_util_la-virhook.lo CC util/libvirt_util_la-virhostcpu.lo CC util/libvirt_util_la-virhostdev.lo CC util/libvirt_util_la-virhostmem.lo CC util/libvirt_util_la-viridentity.lo CC util/libvirt_util_la-virinitctl.lo CC util/libvirt_util_la-viriptables.lo CC util/libvirt_util_la-viriscsi.lo CC util/libvirt_util_la-virjson.lo CC util/libvirt_util_la-virkeycode.lo CC util/libvirt_util_la-virkeyfile.lo CC util/libvirt_util_la-virlease.lo CC util/libvirt_util_la-virlockspace.lo CC util/libvirt_util_la-virlog.lo CC util/libvirt_util_la-virmacaddr.lo CC util/libvirt_util_la-virmacmap.lo CC util/libvirt_util_la-virmodule.lo CC util/libvirt_util_la-virnetdev.lo CC util/libvirt_util_la-virnetdevbandwidth.lo CC util/libvirt_util_la-virnetdevbridge.lo CC util/libvirt_util_la-virnetdevip.lo CC util/libvirt_util_la-virnetdevmacvlan.lo CC util/libvirt_util_la-virnetdevmidonet.lo CC util/libvirt_util_la-virnetdevopenvswitch.lo CC util/libvirt_util_la-virnetdevtap.lo CC util/libvirt_util_la-virnetdevveth.lo CC util/libvirt_util_la-virnetdevvlan.lo CC util/libvirt_util_la-virnetdevvportprofile.lo CC util/libvirt_util_la-virnetlink.lo CC util/libvirt_util_la-virnodesuspend.lo CC util/libvirt_util_la-virkmod.lo CC util/libvirt_util_la-virnuma.lo CC util/libvirt_util_la-virobject.lo CC util/libvirt_util_la-virpci.lo CC util/libvirt_util_la-virpidfile.lo CC util/libvirt_util_la-virpolkit.lo CC util/libvirt_util_la-virportallocator.lo CC util/libvirt_util_la-virprocess.lo CC util/libvirt_util_la-virqemu.lo CC util/libvirt_util_la-virrandom.lo CC util/libvirt_util_la-virresctrl.lo CC util/libvirt_util_la-virrotatingfile.lo CC util/libvirt_util_la-virscsi.lo CC util/libvirt_util_la-virscsihost.lo CC util/libvirt_util_la-virscsivhost.lo CC util/libvirt_util_la-virseclabel.lo CC util/libvirt_util_la-virsecret.lo CC util/libvirt_util_la-virsexpr.lo CC util/libvirt_util_la-virsocketaddr.lo CC util/libvirt_util_la-virstorageencryption.lo CC util/libvirt_util_la-virstoragefile.lo CC util/libvirt_util_la-virstoragefilebackend.lo CC util/libvirt_util_la-virstring.lo CC util/libvirt_util_la-virsysinfo.lo CC util/libvirt_util_la-virsystemd.lo CC util/libvirt_util_la-virthread.lo CC util/libvirt_util_la-virthreadjob.lo CC util/libvirt_util_la-virthreadpool.lo CC util/libvirt_util_la-virtime.lo CC util/libvirt_util_la-virtpm.lo CC util/libvirt_util_la-virtypedparam.lo CC util/libvirt_util_la-virusb.lo CC util/libvirt_util_la-viruri.lo CC util/libvirt_util_la-virutil.lo CC util/libvirt_util_la-viruuid.lo CC util/libvirt_util_la-virvhba.lo CC util/libvirt_util_la-virvsock.lo CC util/libvirt_util_la-virxml.lo CC util/libvirt_util_la-virmdev.lo CC util/libvirt_util_la-virfilecache.lo CC conf/libvirt_conf_la-netdev_bandwidth_conf.lo CC conf/libvirt_conf_la-netdev_vport_profile_conf.lo CC conf/libvirt_conf_la-netdev_vlan_conf.lo CC conf/libvirt_conf_la-capabilities.lo CC conf/libvirt_conf_la-domain_addr.lo CC conf/libvirt_conf_la-domain_capabilities.lo CC conf/libvirt_conf_la-domain_conf.lo CC conf/libvirt_conf_la-domain_audit.lo CC conf/libvirt_conf_la-domain_nwfilter.lo CC conf/libvirt_conf_la-virsavecookie.lo CC conf/libvirt_conf_la-snapshot_conf.lo CC conf/libvirt_conf_la-numa_conf.lo CC conf/libvirt_conf_la-virdomainobjlist.lo CC conf/libvirt_conf_la-object_event.lo CC conf/libvirt_conf_la-domain_event.lo CC conf/libvirt_conf_la-network_event.lo CC conf/libvirt_conf_la-storage_event.lo CC conf/libvirt_conf_la-node_device_event.lo CC conf/libvirt_conf_la-secret_event.lo CC conf/libvirt_conf_la-network_conf.lo CC conf/libvirt_conf_la-virnetworkobj.lo CC conf/libvirt_conf_la-networkcommon_conf.lo CC conf/libvirt_conf_la-nwfilter_params.lo CC conf/libvirt_conf_la-nwfilter_ipaddrmap.lo CC conf/libvirt_conf_la-nwfilter_conf.lo CC conf/libvirt_conf_la-virnwfilterobj.lo CC conf/libvirt_conf_la-virnwfilterbindingdef.lo CC conf/libvirt_conf_la-virnwfilterbindingobj.lo CC conf/libvirt_conf_la-virnwfilterbindingobjlist.lo CC conf/libvirt_conf_la-node_device_conf.lo CC conf/libvirt_conf_la-virnodedeviceobj.lo CC conf/libvirt_conf_la-storage_adapter_conf.lo CC conf/libvirt_conf_la-storage_conf.lo CC conf/libvirt_conf_la-virstorageobj.lo CC conf/libvirt_conf_la-interface_conf.lo CC conf/libvirt_conf_la-virinterfaceobj.lo CC conf/libvirt_conf_la-secret_conf.lo CC conf/libvirt_conf_la-virsecretobj.lo CC conf/libvirt_conf_la-cpu_conf.lo CC conf/libvirt_conf_la-virchrdev.lo CC conf/libvirt_conf_la-device_conf.lo CC cpu/libvirt_cpu_la-cpu.lo CC cpu/libvirt_cpu_la-cpu_x86.lo CC cpu/libvirt_cpu_la-cpu_s390.lo CC cpu/libvirt_cpu_la-cpu_arm.lo CC cpu/libvirt_cpu_la-cpu_ppc64.lo CC cpu/libvirt_cpu_la-cpu_map.lo CC security/libvirt_security_manager_la-security_driver.lo CC security/libvirt_security_manager_la-security_nop.lo CC security/libvirt_security_manager_la-security_stack.lo CC security/libvirt_security_manager_la-security_dac.lo CC security/libvirt_security_manager_la-security_manager.lo CC access/libvirt_driver_access_la-viraccessperm.lo CC access/libvirt_driver_access_la-viraccessmanager.lo CC access/libvirt_driver_access_la-viraccessdrivernop.lo CC access/libvirt_driver_access_la-viraccessdriverstack.lo CC access/libvirt_driver_access_la-viraccessapicheck.lo CC access/libvirt_driver_access_la-viraccessapicheckqemu.lo CC access/libvirt_driver_access_la-viraccessapichecklxc.lo CC access/libvirt_driver_access_la-viraccessdriverpolkit.lo CC rpc/libvirt_net_rpc_la-virnetmessage.lo CC rpc/libvirt_net_rpc_la-virnettlscontext.lo CC rpc/libvirt_net_rpc_la-virnetsocket.lo CC rpc/libvirt_net_rpc_la-virkeepalive.lo CC rpc/libvirt_net_rpc_la-virnetprotocol.lo CC rpc/libvirt_net_rpc_la-virkeepaliveprotocol.lo CC rpc/libvirt_net_rpc_la-virnetsshsession.lo CC rpc/libvirt_net_rpc_server_la-virnetserverprogram.lo CC rpc/libvirt_net_rpc_server_la-virnetserverservice.lo CC rpc/libvirt_net_rpc_server_la-virnetserverclient.lo CC rpc/libvirt_net_rpc_server_la-virnetservermdns.lo CC rpc/libvirt_net_rpc_server_la-virnetdaemon.lo CC rpc/libvirt_net_rpc_server_la-virnetserver.lo CC rpc/libvirt_net_rpc_client_la-virnetclientprogram.lo CC rpc/libvirt_net_rpc_client_la-virnetclientstream.lo CC rpc/libvirt_net_rpc_client_la-virnetclient.lo CC phyp/libvirt_driver_phyp_la-phyp_driver.lo CC test/libvirt_driver_test_la-test_driver.lo CC esx/libvirt_driver_esx_la-esx_driver.lo CC esx/libvirt_driver_esx_la-esx_interface_driver.lo CC esx/libvirt_driver_esx_la-esx_network_driver.lo CC esx/libvirt_driver_esx_la-esx_storage_driver.lo CC esx/libvirt_driver_esx_la-esx_storage_backend_vmfs.lo CC esx/libvirt_driver_esx_la-esx_storage_backend_iscsi.lo CC esx/libvirt_driver_esx_la-esx_stream.lo CC esx/libvirt_driver_esx_la-esx_util.lo CC esx/libvirt_driver_esx_la-esx_vi.lo CC esx/libvirt_driver_esx_la-esx_vi_methods.lo CC esx/libvirt_driver_esx_la-esx_vi_types.lo CC vmx/libvirt_vmx_la-vmx.lo CC vmware/libvirt_driver_vmware_la-vmware_driver.lo CC vmware/libvirt_driver_vmware_la-vmware_conf.lo CC secret/libvirt_secret_la-secret_util.lo CC remote/libvirt_driver_remote_la-remote_driver.lo CC remote/libvirt_driver_remote_la-remote_protocol.lo CC remote/libvirt_driver_remote_la-lxc_protocol.lo CC remote/libvirt_driver_remote_la-qemu_protocol.lo CC logging/libvirt_driver_la-log_protocol.lo CC logging/libvirt_driver_la-log_manager.lo CC locking/libvirt_driver_la-lock_manager.lo CC locking/libvirt_driver_la-lock_driver_nop.lo CC locking/libvirt_driver_la-domain_lock.lo CC admin/libvirt_admin_la-admin_protocol.lo CCLD libvirt_driver_admin.la GEN util/virkeycode-linux.7 GEN util/virkeycode-osx.7 GEN util/virkeycode-atset1.7 GEN util/virkeycode-atset2.7 GEN util/virkeycode-atset3.7 GEN util/virkeycode-xtkbd.7 GEN util/virkeycode-usb.7 GEN util/virkeycode-win32.7 GEN util/virkeycode-qnum.7 GEN util/virkeyname-linux.7 GEN util/virkeyname-osx.7 GEN util/virkeyname-win32.7 CCLD libvirt_util.la CCLD libvirt_conf.la CCLD libvirt_cpu.la CCLD libvirt_security_manager.la CCLD libvirt_driver_access.la CCLD libvirt-net-rpc.la CCLD libvirt-net-rpc-server.la CCLD libvirt-net-rpc-client.la CCLD libvirt_driver_phyp.la CCLD libvirt_driver_test.la CCLD libvirt_driver_esx.la CCLD libvirt_vmx.la CCLD libvirt_driver_vmware.la CCLD libvirt_secret.la CCLD libvirt_driver_remote.la CCLD libvirt_driver.la CCLD libvirt.la CCLD libvirt-lxc.la CCLD libvirt-qemu.la CCLD libvirt-admin.la rm util/virkeyname-osx.pod util/virkeycode-xtkbd.pod util/virkeycode-atset3.pod util/virkeycode-usb.pod util/virkeycode-qnum.pod util/virkeycode-win32.pod util/virkeyname-linux.pod util/virkeycode-osx.pod util/virkeycode-linux.pod util/virkeycode-atset1.pod util/virkeyname-win32.pod util/virkeycode-atset2.pod gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…'> Making all in tools gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…'> GEN libvirt-guests.sh /usr/bin/gmake all-am gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…'> CC virsh-virsh.o CC virsh-virsh-completer.o CC virsh-virsh-console.o CC virsh-virsh-domain.o CC virsh-virsh-domain-monitor.o CC virsh-virsh-host.o CC virsh-virsh-interface.o CC virsh-virsh-network.o CC virsh-virsh-nodedev.o CC virsh-virsh-nwfilter.o CC virsh-virsh-pool.o CC virsh-virsh-secret.o In file included from ../../tools/virsh-domain.c:53: ../../tools/virsh-domain.c: In function 'virshVcpuPinQuery': ../../tools/virsh-domain.c:6952:39: error: format '%lu' expects argument of type 'long unsigned int', but argument 8 has type 'size_t' {aka 'unsigned int'} [-Werror=format=] if (virAsprintf(&vcpuStr, "%lu", i) < 0) ^~~~~ ~ ../../src/util/virstring.h:261:31: note: in definition of macro 'virAsprintf' strp, __VA_ARGS__) ^~~~~~~~~~~ cc1: all warnings being treated as errors gmake[3]: *** [Makefile:2909: virsh-virsh-domain.o] Error 1 gmake[3]: *** Waiting for unfinished jobs.... gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…'> gmake[2]: *** [Makefile:2430: all] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…'> gmake[1]: *** [Makefile:2111: all-recursive] Error 1 gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt+mingw32-build/systems=libvirt-fedora-rawh…'> gmake: *** [Makefile:2004: all] Error 2 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Fixed: libvirt/libvirt#1712 (master - 4374900)
by Travis CI 24 Sep '18

24 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1712 Status: Fixed Duration: 21 mins and 22 secs Commit: 4374900 (master) Author: Michal Privoznik Message: tools: Fix printf format We're passing size_t but using format for unsigned long. Introduced in latest vshTable rework patches. Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/2585a79e32e8...43749000406b View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/432435401?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-28 #38
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-28/38/d…> ------------------------------------------ [...truncated 27.37 KB...] _, domain = self.get_test_domain() > domain.Shutdown(0) ../../tests/test_domain.py:143: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7fcac152e3b8> bus_name = dbus.String(':1.2') 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.2> 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.6/site-packages/dbus/connection.py:651: DBusException --------------------------- Captured stderr teardown --------------------------- Disconnected from D-Bus. ================= 4 failed, 5 passed, 1 error in 13.40 seconds ================= FAIL test_domain.py (exit status: 1) FAIL: test_interface.py ======================= ============================= test session starts ============================== platform linux -- Python 3.6.6, pytest-3.4.2, py-1.5.4, pluggy-0.6.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-28/ws/,> inifile: collected 5 items ../../tests/test_interface.py E..EE [100%] ==================================== ERRORS ==================================== ___________ ERROR at setup of TestInterface.test_interface_undefine ____________ self = <test_interface.TestInterface object at 0x7fb8438c2390> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_interface_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 ---------------------------- Captured stderr setup ----------------------------- dbus-daemon[23445]: Cannot setup inotify for '/home/jenkins/.local/share/dbus-1/services'; error 'Permission denied' ______ ERROR at setup of TestInterface.test_interface_get_xml_description ______ self = <test_interface.TestInterface object at 0x7fb84389ee10> @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.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7fb843d76bf8> bus_name = dbus.String(':1.1') 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.1> 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.6/site-packages/dbus/connection.py:651: DBusException ________ ERROR at setup of TestInterface.test_interface_properties_type ________ self = <test_interface.TestInterface object at 0x7fb8437c5fd0> @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.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7fb843d76bf8> bus_name = dbus.String(':1.1') 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.1> 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.6/site-packages/dbus/connection.py:651: DBusException ====================== 2 passed, 3 error in 7.00 seconds ======================= FAIL test_interface.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-rawhide #38
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhide…> ------------------------------------------ [...truncated 23.98 KB...] _, 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 0x7fa68c65d8e0> bus_name = dbus.String(':1.3') 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.3> 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 11.06 seconds ================= FAIL test_domain.py (exit status: 1) FAIL: test_interface.py ======================= ============================= test session starts ============================== platform linux -- Python 3.7.0, pytest-3.6.3, py-1.5.4, pluggy-0.6.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhide…,> inifile: collected 5 items ../../tests/test_interface.py E..EE [100%] ==================================== ERRORS ==================================== ___________ ERROR at setup of TestInterface.test_interface_undefine ____________ self = <test_interface.TestInterface object at 0x7f57ed662d68> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_interface_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 ---------------------------- Captured stderr setup ----------------------------- dbus-daemon[12223]: Cannot setup inotify for '/home/jenkins/.local/share/dbus-1/services'; error 'Permission denied' ______ ERROR at setup of TestInterface.test_interface_get_xml_description ______ self = <test_interface.TestInterface object at 0x7f57ed5b5828> @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 0x7f57ed661410> bus_name = dbus.String(':1.1') 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.1> 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 TestInterface.test_interface_properties_type ________ self = <test_interface.TestInterface object at 0x7f57ed521518> @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 0x7f57ed661410> bus_name = dbus.String(':1.1') 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.1> 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 ====================== 2 passed, 3 error in 7.70 seconds ======================= FAIL test_interface.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-27 #38
by ci@centos.org 24 Sep '18

24 Sep '18
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-27/38/d…> ------------------------------------------ [...truncated 26.58 KB...] self.connect.connect_to_signal('DomainEvent', domain_undefined) _, domain = self.get_test_domain() > domain.Shutdown(0) ../../tests/test_domain.py:143: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7fcbf5526360> bus_name = dbus.String(':1.1') 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.1> 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.6/site-packages/dbus/connection.py:651: DBusException --------------------------- Captured stderr teardown --------------------------- Disconnected from D-Bus. ================= 4 failed, 5 passed, 1 error in 12.13 seconds ================= FAIL test_domain.py (exit status: 1) FAIL: test_interface.py ======================= ============================= test session starts ============================== platform linux -- Python 3.6.6, pytest-3.2.3, py-1.4.34, pluggy-0.4.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-27/ws/,> inifile: collected 5 items ../../tests/test_interface.py .E.EE ==================================== ERRORS ==================================== ____________ ERROR at setup of TestInterface.test_interface_destroy ____________ self = <test_interface.TestInterface object at 0x7fc59ec48ef0> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_interface_destroy'>> @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 TestInterface.test_interface_get_xml_description ______ self = <test_interface.TestInterface object at 0x7fc59e7ae358> @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.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7fc59eca7ba0> bus_name = dbus.String(':1.2') 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.2> 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.6/site-packages/dbus/connection.py:651: DBusException ________ ERROR at setup of TestInterface.test_interface_properties_type ________ self = <test_interface.TestInterface object at 0x7fc59e752be0> @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.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7fc59eca7ba0> bus_name = dbus.String(':1.2') 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.2> 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.6/site-packages/dbus/connection.py:651: DBusException ====================== 2 passed, 3 error in 7.68 seconds ======================= FAIL test_interface.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Broken: libvirt/libvirt#1711 (master - 2585a79)
by Travis CI 24 Sep '18

24 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1711 Status: Broken Duration: 28 mins and 14 secs Commit: 2585a79 (master) Author: Shi Lei Message: build-aux:check-spacing: Introduce a new rule to check misaligned stuff in parenthesises This patch introduces a new rule to check misaligned stuff in parenthesis: 1. For misaligned arguments of function 2. For misaligned conditions of [if|while|switch|...] There're too much misalignment, so it adds a temporary filter which permits 'src/util' now. It _should_ be removed as soon as fixing all. Signed-off-by: Shi Lei <shi_lei(a)massclouds.com> View the changeset: https://github.com/libvirt/libvirt/compare/bfdd20c5a974...2585a79e32e8 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/432364253?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Broken: libvirt/libvirt#1710 (master - bfdd20c)
by Travis CI 24 Sep '18

24 Sep '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1710 Status: Broken Duration: 20 mins and 45 secs Commit: bfdd20c (master) Author: Simon Kobyda Message: virt-admin: Implement vshTable API to server-list and client-list Signed-off-by: Simon Kobyda <skobyda(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/2f754b26cb2b...bfdd20c5a974 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/432360361?utm_medium=notificat… -- You can unsubscribe from build emails from the libvirt/libvirt repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872032&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt-python#9 (master - 9dff880)
by Travis CI 24 Sep '18

24 Sep '18
Build Update for libvirt/libvirt-python ------------------------------------- Build: #9 Status: Errored Duration: 13 mins and 42 secs Commit: 9dff880 (master) Author: Philipp Hahn Message: event-test.py: Fix blanks Closer to pep8 Signed-off-by: Philipp Hahn <hahn(a)univention.de> View the changeset: https://github.com/libvirt/libvirt-python/compare/fc4000152ef8...9dff88056c… View the full build log and details: https://travis-ci.org/libvirt/libvirt-python/builds/432348832?utm_medium=no… -- You can unsubscribe from build emails from the libvirt/libvirt-python repository going to https://travis-ci.org/account/preferences/unsubscribe?repository=4872050&ut…. Or unsubscribe from *all* email updating your settings at https://travis-ci.org/account/preferences/unsubscribe?utm_medium=notificati…. Or configure specific recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications.
1 0
0 0
[Libvirt-ci] Build failed in Jenkins: virt-viewer-build » libvirt-freebsd-10 #35
by ci@centos.org 21 Sep '18

21 Sep '18
See <https://ci.centos.org/job/virt-viewer-build/systems=libvirt-freebsd-10/35/d…> ------------------------------------------ Started by upstream project "virt-viewer-build" build number 35 originally caused by: Started by upstream project "libvirt-glib-build" build number 32 originally caused by: Started by upstream project "libvirt-build" build number 47 originally caused by: Started by an SCM change Started by an SCM change Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-freebsd-10 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-build/systems=libvirt-freebsd-10/ws/> > git rev-parse --is-inside-work-tree # timeout=10 Fetching changes from the remote Git repository > git config remote.origin.url https://pagure.io/virt-viewer.git # timeout=10 Fetching upstream changes from https://pagure.io/virt-viewer.git > git --version # timeout=10 > git fetch --tags --progress https://pagure.io/virt-viewer.git +refs/heads/*:refs/remotes/origin/* Checking out Revision 65ef66e42a6db2a9826fffef0db49920a02d358f (refs/remotes/origin/master) > git config core.sparsecheckout # timeout=10 > git checkout -f 65ef66e42a6db2a9826fffef0db49920a02d358f Commit message: "Spice: listen for new 'SpiceSession::disconnected' signal" > git rev-list --no-walk 65ef66e42a6db2a9826fffef0db49920a02d358f # timeout=10 Cleaning workspace > git rev-parse --verify HEAD # timeout=10 FATAL: Invalid id: 65ef66e42a6db2a9826fffef0db49920a02d358f Process leaked file descriptors. See https://jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to JNLP4-connect connection from n64.gusty.ci.centos.org/172.19.2.192:1027 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741) at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357) at hudson.remoting.Channel.call(Channel.java:955) at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283) at com.sun.proxy.$Proxy86.clean(Unknown Source) at org.jenkinsci.plugins.gitclient.RemoteGitImpl.clean(RemoteGitImpl.java:450) at hudson.plugins.git.extensions.impl.CleanCheckout.onCheckoutCompleted(CleanCheckout.java:30) at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1264) 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:1798) at hudson.matrix.MatrixRun.run(MatrixRun.java:153) at hudson.model.ResourceController.execute(ResourceController.java:97) at hudson.model.Executor.run(Executor.java:429) org.eclipse.jgit.errors.InvalidObjectIdException: Invalid id: 65ef66e42a6db2a9826fffef0db49920a02d358f Process leaked file descriptors. See https://jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information at org.eclipse.jgit.lib.ObjectId.fromString(ObjectId.java:232) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.validateRevision(CliGitAPIImpl.java:866) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.reset(CliGitAPIImpl.java:465) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.clean(CliGitAPIImpl.java:801) at hudson.plugins.git.GitAPI.clean(GitAPI.java:311) at sun.reflect.GeneratedMethodAccessor359.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(RemoteInvocationHandler.java:929) at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:903) at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:855) 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:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at hudson.remoting.Engine$1.lambda$newThread$0(Engine.java:93) at java.lang.Thread.run(Thread.java:748)
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-28 #31
by ci@centos.org 20 Sep '18

20 Sep '18
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-28/31/d…> ------------------------------------------ [...truncated 6.25 KB...] platform linux -- Python 3.6.6, pytest-3.4.2, py-1.5.4, pluggy-0.6.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-28/ws/,> inifile: collected 35 items ../../tests/test_connect.py .E.............E..................E [100%] ==================================== ERRORS ==================================== _________ ERROR at setup of TestConnect.test_connect_domain_define_xml _________ self = <test_connect.TestConnect object at 0x7f2318b74e48> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_connect_domain_define_xml'>> @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 0x7f2318c4ceb8> @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.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f2318c10308> bus_name = dbus.String(':1.2') 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.2> 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.6/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 0x7f2318c3d630> @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:122: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__ return self._proxy_method(*args, **keywords) /usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__ **keywords) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f2318c10308> bus_name = dbus.String(':1.2') 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.2> 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.6/site-packages/dbus/connection.py:651: DBusException ===================== 32 passed, 3 error in 10.30 seconds ====================== FAIL test_connect.py (exit status: 1) FAIL: test_network.py ===================== ============================= test session starts ============================== platform linux -- Python 3.6.6, pytest-3.4.2, py-1.5.4, pluggy-0.6.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-28/ws/,> inifile: collected 7 items ../../tests/test_network.py ...E..F [100%] ==================================== ERRORS ==================================== ______________ ERROR at setup of TestNetwork.test_network_destroy ______________ self = <test_network.TestNetwork object at 0x7fbf74d529e8> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_network_destroy'>> @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 =================================== TestNetwork.test_network_update[4-4-0-\n <host mac='00:16:3e:77:e2:ed' name='foo.example.com' ip='192.168.122.10'/>\n -0] self = <test_network.TestNetwork object at 0x7fbf74d4ccc0>, command = '4' section = '4', parentIndex = 0 xml_str = "\n <host mac='00:16:3e:77:e2:ed' name='foo.example.com' ip='192.168.122.10'/>\n " flags = 0 @pytest.mark.parametrize("command, section, parentIndex, xml_str, flags", [ ('4', '4', 0, ip_dhcp_host_xml, 0), # add-first, ip-dhcp-host ]) def test_network_update(self, command, section, parentIndex, xml_str, flags): > _, test_network = self.get_test_network() ../../tests/test_network.py:91: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <test_network.TestNetwork object at 0x7fbf74d4ccc0> def get_test_network(self): """Fetch information for the test network from test driver Returns: (dbus.proxies.ProxyObject, dbus.proxies.ProxyObject): Test Network Object, Local proxy for the test Network Object. """ > path = self.connect.ListNetworks(0)[0] E IndexError: list index out of range ../../tests/libvirttest.py:138: IndexError --------------------------- Captured stderr teardown --------------------------- Disconnected from D-Bus. ================= 1 failed, 5 passed, 1 error in 5.98 seconds ================== FAIL test_network.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
  • ← Newer
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.