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
  • ----- 2025 -----
  • 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

February 2019

  • 2 participants
  • 132 discussions
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-29 #175
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/175/…> ------------------------------------------ [...truncated 6.15 KB...] ============================= test session starts ============================== platform linux -- Python 3.7.2, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws/,> inifile: collected 5 items ../../tests/test_interface.py .E.EE [100%] ==================================== ERRORS ==================================== ____________ ERROR at setup of TestInterface.test_interface_destroy ____________ self = <test_interface.TestInterface object at 0x7f8746da4eb8> 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 0x7f8746dee390> @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 0x7f8746d330a0> 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.7/site-packages/dbus/connection.py:651: DBusException ________ ERROR at setup of TestInterface.test_interface_properties_type ________ self = <test_interface.TestInterface object at 0x7f8746cae470> @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 0x7f8746d330a0> 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.7/site-packages/dbus/connection.py:651: DBusException ====================== 2 passed, 3 error in 6.48 seconds ======================= FAIL test_interface.py (exit status: 1) FAIL: test_network.py ===================== ============================= test session starts ============================== platform linux -- Python 3.7.2, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws/,> inifile: collected 7 items ../../tests/test_network.py ...E..F [100%] ==================================== ERRORS ==================================== ______________ ERROR at setup of TestNetwork.test_network_destroy ______________ self = <test_network.TestNetwork object at 0x7f9096be6550> 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 0x7f9096bedb38>, 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 0x7f9096bedb38> 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 6.86 seconds ================== FAIL test_network.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-fedora-rawhide #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/89…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 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/jenkins5748391672933620249.sh + 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-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris 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_devicelinklist-test-devicelinklist.o CC test_filter-test-filter.o CC test_media-test-media.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_image-test-image.o CC test_imagelist-test-imagelist.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris 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-device PASS: test-list PASS: test-entity PASS: test-devicelinklist PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-media PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1440: test-suite.log] Error 1 gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[2]: *** [Makefile:1548: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-rawhide/ws…'> gmake[1]: *** [Makefile:1769: 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.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/eos: OK /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/haiku: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/fedora: OK /isodetect/dragonflybsd: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/android-x86: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK FAIL test-isodetect (exit status: 1) SKIP: test-mediauris ==================== SKIP test-mediauris (exit status: 77) SKIP: test-treeuris =================== SKIP test-treeuris (exit status: 77) SKIP: test-imageuris ==================== SKIP test-imageuris (exit status: 77) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-fedora-28 #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/89/disp…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 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/jenkins7654862244407736382.sh + 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-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris 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_devicelinklist-test-devicelinklist.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_media-test-media.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_image-test-image.o CC test_imagelist-test-imagelist.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris 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-filter PASS: test-devicelist PASS: test-devicelinklist PASS: test-product PASS: test-media PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1412: 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:1520: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-28/ws/buil…'> gmake[1]: *** [Makefile:1738: 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.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/eos: OK /isodetect/dragonflybsd: OK /isodetect/haiku: OK /isodetect/fedora: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK /isodetect/android-x86: OK FAIL test-isodetect (exit status: 1) SKIP: test-mediauris ==================== SKIP test-mediauris (exit status: 77) SKIP: test-treeuris =================== SKIP test-treeuris (exit status: 77) SKIP: test-imageuris ==================== SKIP test-imageuris (exit status: 77) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-fedora-29 #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/89/disp…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-fedora-29 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins3843820135680973807.sh + 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-29/ws/buil…'> /usr/bin/gmake check-am gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> /usr/bin/gmake check-local gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> GEN check-symfile GEN check-symsorting gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> Making check in tools gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> Making check in docs gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> Making check in reference gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/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-29/ws/buil…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> Making check in po gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/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-29/ws/buil…'> Making check in examples gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> Making check in tests gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> /usr/bin/gmake test-entity test-device test-list test-devicelist test-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/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_devicelinklist-test-devicelinklist.o CC test_filter-test-filter.o CC test_media-test-media.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_image-test-image.o CC test_imagelist-test-imagelist.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> /usr/bin/gmake check-TESTS gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> PASS: test-list PASS: test-entity PASS: test-device PASS: test-devicelinklist PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-media PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1440: test-suite.log] Error 1 gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[2]: *** [Makefile:1548: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake[1]: *** [Makefile:1769: check-am] Error 2 gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-fedora-29/ws/buil…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/android-x86: OK /isodetect/eos: OK /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/haiku: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/fedora: OK /isodetect/dragonflybsd: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK FAIL test-isodetect (exit status: 1) SKIP: test-mediauris ==================== SKIP test-mediauris (exit status: 77) SKIP: test-treeuris =================== SKIP test-treeuris (exit status: 77) SKIP: test-imageuris ==================== SKIP test-imageuris (exit status: 77) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-freebsd-11 #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-11/89/dis…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 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/jenkins3383468593703141166.sh + cd build + /usr/local/bin/gmake check GEN public-submodule-commit Making check in osinfo 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-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris 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_devicelinklist-test-devicelinklist.o CC test_filter-test-filter.o CC test_media-test-media.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_image-test-image.o CC test_imagelist-test-imagelist.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris 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-device PASS: test-devicelist PASS: test-devicelinklist PASS: test-list PASS: test-filter PASS: test-product PASS: test-media PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1440: 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:1548: 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:1769: 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.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/eos: OK /isodetect/android-x86: OK /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/haiku: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/fedora: OK /isodetect/dragonflybsd: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK FAIL test-isodetect (exit status: 1) SKIP: test-mediauris ==================== SKIP test-mediauris (exit status: 77) SKIP: test-treeuris =================== SKIP test-treeuris (exit status: 77) SKIP: test-imageuris ==================== SKIP test-imageuris (exit status: 77) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-freebsd-12 #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/89/dis…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-freebsd-12 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/> [libosinfo] $ /bin/sh -xe /tmp/jenkins7011284340793100883.sh + 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-12/ws/bui…'> /usr/local/bin/gmake check-am gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> /usr/local/bin/gmake check-local gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> GEN check-symsorting gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> Making check in tools gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/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-12/ws/bui…'> Making check in docs gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> Making check in reference gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/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-12/ws/bui…'> gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/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-12/ws/bui…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> Making check in po gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/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-12/ws/bui…'> Making check in examples gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/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-12/ws/bui…'> Making check in tests gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> /usr/local/bin/gmake test-entity test-device test-list test-devicelist test-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/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_devicelinklist-test-devicelinklist.o CC test_filter-test-filter.o CC test_media-test-media.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_image-test-image.o CC test_imagelist-test-imagelist.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> /usr/local/bin/gmake check-TESTS gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> PASS: test-list PASS: test-devicelist PASS: test-device PASS: test-entity PASS: test-devicelinklist PASS: test-filter PASS: test-product PASS: test-media PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1440: test-suite.log] Error 1 gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> gmake[2]: *** [Makefile:1548: check-TESTS] Error 2 gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> gmake[1]: *** [Makefile:1769: check-am] Error 2 gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-check/systems=libvirt-freebsd-12/ws/bui…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/eos: OK /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/haiku: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/fedora: OK /isodetect/dragonflybsd: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/android-x86: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK FAIL test-isodetect (exit status: 1) SKIP: test-mediauris ==================== SKIP test-mediauris (exit status: 77) SKIP: test-treeuris =================== SKIP test-treeuris (exit status: 77) SKIP: test-imageuris ==================== SKIP test-imageuris (exit status: 77) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-debian-9 #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/89/displ…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 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/jenkins8253486521554620355.sh + 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-symfile GEN check-symsorting 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-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-9/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_devicelinklist-test-devicelinklist.o CC test_filter-test-filter.o CC test_media-test-media.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_platform-test-platform.o CC test_productfilter-test-productfilter.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_image-test-image.o CC test_imagelist-test-imagelist.o CC test_treeuris-test-treeuris.o CC test_mediauris-test-mediauris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris 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-entity PASS: test-list PASS: test-device PASS: test-devicelist PASS: test-devicelinklist PASS: test-product PASS: test-filter PASS: test-media PASS: test-oslist PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-productfilter PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ Makefile:1412: 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:1518: 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:1738: 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.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/haiku: OK /isodetect/android-x86: OK /isodetect/eos: OK /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/fedora: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK /isodetect/dragonflybsd: OK FAIL test-isodetect (exit status: 1) SKIP: test-mediauris ==================== SKIP test-mediauris (exit status: 77) SKIP: test-treeuris =================== SKIP test-treeuris (exit status: 77) SKIP: test-imageuris ==================== SKIP test-imageuris (exit status: 77) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-centos-7 #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-centos-7/89/displ…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 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/jenkins5963646703696525083.sh + 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-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-symfile GEN check-symsorting 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-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris 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_devicelist-test-devicelist.o CC test_devicelinklist-test-devicelinklist.o CC test_filter-test-filter.o CC test_media-test-media.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_image-test-image.o CC test_imagelist-test-imagelist.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris 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-device PASS: test-list PASS: test-entity PASS: test-filter PASS: test-devicelist PASS: test-devicelinklist PASS: test-product PASS: test-media PASS: test-productfilter PASS: test-oslist PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: 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.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # 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.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/eos: OK /isodetect/android-x86: OK /isodetect/dragonflybsd: OK /isodetect/haiku: OK /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/fedora: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK SKIP: test-mediauris ==================== SKIP: test-treeuris =================== SKIP: test-imageuris ==================== + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-check » libvirt-debian-8 #89
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/89/displ…> ------------------------------------------ Started by upstream project "libosinfo-check" build number 89 originally caused by: Started by upstream project "libosinfo-syntax-check" build number 90 originally caused by: Started by upstream project "libosinfo-build" build number 93 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/jenkins7612343341015375343.sh + cd build + /usr/bin/make check Making check in osinfo GEN public-submodule-commit 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-symfile GEN check-symsorting 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-devicelinklist test-filter test-media test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-image test-imagelist test-mediauris test-treeuris test-imageuris make[2]: Entering directory '<https://ci.centos.org/job/libosinfo-check/systems=libvirt-debian-8/ws/build…'> CC test_list-test-list.o CC test_device-test-device.o CC test_entity-test-entity.o CC test_devicelist-test-devicelist.o CC test_devicelinklist-test-devicelinklist.o CC test_filter-test-filter.o CC test_media-test-media.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_loader-test-loader.o CC test_db-test-db.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_image-test-image.o CC test_imagelist-test-imagelist.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CC test_imageuris-test-imageuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-devicelinklist CCLD test-filter CCLD test-media 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-image CCLD test-imagelist CCLD test-mediauris CCLD test-treeuris CCLD test-imageuris 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-entity PASS: test-devicelist PASS: test-list PASS: test-device PASS: test-filter PASS: test-devicelinklist PASS: test-product PASS: test-media PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-loader PASS: test-install-script PASS: test-image PASS: test-imagelist SKIP: test-mediauris SKIP: test-treeuris SKIP: test-imageuris PASS: test-os FAIL: 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.4.0 ============================================================================ # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ Makefile:1402: 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:1508: 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:1728: 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:585: recipe for target 'check-recursive' failed make: *** [check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.4.0: tests/test-suite.log =========================================== # TOTAL: 22 # PASS: 18 # SKIP: 3 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/haiku: OK /isodetect/dragonflybsd: OK /isodetect/eos: OK /isodetect/android-x86: OK /isodetect/windows: OK /isodetect/ubuntu: ISO disco-server-ppc64el.iso.txt was not matched by OS ubuntu19.04 /isodetect/ubuntu: FAIL /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: OK /isodetect/openbsd: OK /isodetect/netbsd: OK /isodetect/mageia: OK /isodetect/gnome: OK /isodetect/freedos: OK /isodetect/freebsd: OK /isodetect/fedora: OK /isodetect/debian: OK /isodetect/centos: OK /isodetect/asianux: OK /isodetect/altlinux: OK /isodetect/alpinelinux: OK SKIP: test-mediauris ==================== SKIP: test-treeuris =================== SKIP: test-imageuris ==================== + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-go-check » libvirt-fedora-rawhide #218
by ci@centos.org 04 Feb '19

04 Feb '19
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-rawhide/2…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 218 originally caused by: Started by upstream project "libvirt-go-build" build number 222 originally caused by: Started by upstream project "libvirt-build" build number 281 originally caused by: Started by an SCM change Started by an SCM change Started by an SCM change Started by an SCM change Started by an SCM change Started by an SCM change Started by an SCM change Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-fedora-rawhide (libvirt) in workspace <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-rawhide/w…> [libvirt-go] $ /bin/sh -xe /tmp/jenkins5195702588141200270.sh + export 'TEST_ARGS=-tags api' + TEST_ARGS='-tags api' + go test -tags api Missing enum 'VIR_FROM_FIREWALLD' --- FAIL: TestAPICoverage (1.67s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 19 [running]: testing.tRunner.func1(0xc0000c2100) /usr/lib/golang/src/testing/testing.go:827 +0x388 panic(0x5cd4e0, 0x642bb0) /usr/lib/golang/src/runtime/panic.go:522 +0x1b5 _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-rawhide/w…> <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-rawhide/w…>:501 +0x551 testing.tRunner(0xc0000c2100, 0x61d0d8) /usr/lib/golang/src/testing/testing.go:862 +0xc0 created by testing.(*T).Run /usr/lib/golang/src/testing/testing.go:913 +0x357 exit status 2 FAIL _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-rawhide/w…> 2.300s Build step 'Execute shell' marked build as failure
1 3
0 0
  • ← Newer
  • 1
  • ...
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.