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 -----
  • June
  • May
  • 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

  • 2 participants
  • 9890 discussions
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-29 #78
by ci@centos.org 27 Nov '18

27 Nov '18
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/78/d…> ------------------------------------------ [...truncated 6.38 KB...] ../../tests/test_connect.py ....E..........E..................E [100%] ==================================== ERRORS ==================================== ERROR at setup of TestConnect.test_connect_domain_lookup_by_id[DomainLookupByUUID-UUID] self = <test_connect.TestConnect object at 0x7fe77da470b8> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_connect_domain_lookup_by_id[DomainLookupByUUID-UUID]'>> @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 0x7fe77da74828> @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 0x7fe77dab6518> bus_name = dbus.String(':1.5') 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.5> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if is_py2: get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False) elif 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call reply_message = self.send_message_with_reply_and_block( > message, timeout) E dbus.exceptions.DBusException: org.libvirt.Error: Requested operation is not valid /usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException ERROR at setup of TestConnect.test_connect_storage_vol_lookup_by_property[StorageVolLookupByPath-Path] self = <test_connect.TestConnect object at 0x7fe77d94c978> @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.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 0x7fe77dab6518> bus_name = dbus.String(':1.5') 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.5> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if is_py2: get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False) elif 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call reply_message = self.send_message_with_reply_and_block( > message, timeout) E dbus.exceptions.DBusException: org.libvirt.Error: operation failed: storage vol already exists /usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException ===================== 32 passed, 3 error in 16.83 seconds ====================== FAIL test_connect.py (exit status: 1) FAIL: test_domain.py ==================== ============================= test session starts ============================== platform linux -- Python 3.7.1, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-29/ws/,> inifile: collected 10 items ../../tests/test_domain.py .....E..FF [100%] ==================================== ERRORS ==================================== __________________ ERROR at setup of TestDomain.test_shutdown __________________ self = <test_domain.TestDomain object at 0x7f728add99e8> request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_shutdown'>> @pytest.fixture(autouse=True) def libvirt_dbus_setup(self, request): """Start libvirt-dbus for each test function """ os.environ['LIBVIRT_DEBUG'] = '3' self.libvirt_dbus = subprocess.Popen([exe, '--session']) self.bus = dbus.SessionBus() for i in range(10): if self.bus.name_has_owner('org.libvirt'): break time.sleep(0.1) else: > raise TimeoutError('error starting libvirt-dbus') E TimeoutError: error starting libvirt-dbus ../../tests/libvirttest.py:44: TimeoutError =================================== FAILURES =================================== _________________________ TestDomain.test_domain_vcpus _________________________ self = <test_domain.TestDomain object at 0x7f728adffcc0> def test_domain_vcpus(self): > obj, domain = self.get_test_domain() ../../tests/test_domain.py:149: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <test_domain.TestDomain object at 0x7f728adffcc0> def get_test_domain(self): > path = self.connect.ListDomains(0)[0] E IndexError: list index out of range ../../tests/libvirttest.py:126: IndexError _____________________ TestDomain.test_domain_vcpu_pin_info _____________________ self = <test_domain.TestDomain object at 0x7f728ae22d68> def test_domain_vcpu_pin_info(self): > obj, domain = self.get_test_domain() ../../tests/test_domain.py:155: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <test_domain.TestDomain object at 0x7f728ae22d68> def get_test_domain(self): > path = self.connect.ListDomains(0)[0] E IndexError: list index out of range ../../tests/libvirttest.py:126: IndexError --------------------------- Captured stderr teardown --------------------------- Disconnected from D-Bus. ================= 2 failed, 7 passed, 1 error in 9.92 seconds ================== FAIL test_domain.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Errored: libvirt/libvirt-python#18 (master - 389cc9d)
by Travis CI 26 Nov '18

26 Nov '18
Build Update for libvirt/libvirt-python ------------------------------------- Build: #18 Status: Errored Duration: 14 mins and 44 secs Commit: 389cc9d (master) Author: Philipp Hahn Message: Add daemon to list of shutdown reasons Add the support to work with libvirt commit 66a85cb13. Signed-off-by: Philipp Hahn <hahn(a)univention.de> View the changeset: https://github.com/libvirt/libvirt-python/compare/8f745819c9a5...389cc9d0c7… View the full build log and details: https://travis-ci.org/libvirt/libvirt-python/builds/459741490?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: libvirt-check » libvirt-fedora-rawhide #120
by ci@centos.org 26 Nov '18

26 Nov '18
See <https://ci.centos.org/job/libvirt-check/systems=libvirt-fedora-rawhide/120/…> ------------------------------------------ [...truncated 32.88 KB...] # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libvir-list(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:5864: test-suite.log] Error 1 gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-check/systems=libvirt-fedora-rawhide/ws/b…'> gmake[2]: *** [Makefile:5972: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-check/systems=libvirt-fedora-rawhide/ws/b…'> gmake[1]: *** [Makefile:6977: check-am] Error 2 gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-check/systems=libvirt-fedora-rawhide/ws/b…'> gmake: *** [Makefile:2111: check-recursive] Error 1 + cat tests/test-suite.log ========================================== libvirt 4.10.0: tests/test-suite.log ========================================== # TOTAL: 129 # PASS: 128 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: qemumonitorjsontest ========================= TEST: qemumonitorjsontest QEMU driver capabilities: <capabilities> <host> <cpu> <arch>x86_64</arch> <model>core2duo</model> <vendor>Intel</vendor> <topology sockets='1' cores='2' threads='1'/> <feature name='ds'/> <feature name='acpi'/> <feature name='ss'/> <feature name='ht'/> <feature name='tm'/> <feature name='pbe'/> <feature name='ds_cpl'/> <feature name='vmx'/> <feature name='est'/> <feature name='tm2'/> <feature name='cx16'/> <feature name='xtpr'/> <feature name='lahf_lm'/> </cpu> <power_management/> <iommu support='no'/> <topology> <cells num='4'> <cell id='3'> <memory unit='KiB'>2097152</memory> <cpus num='2'> <cpu id='0' socket_id='3' core_id='0' siblings='0'/> <cpu id='1' socket_id='3' core_id='1' siblings='0'/> </cpus> </cell> <cell id='4'> <memory unit='KiB'>2097152</memory> <cpus num='2'> <cpu id='1' socket_id='4' core_id='1' siblings='1'/> <cpu id='2' socket_id='4' core_id='2' siblings='1'/> </cpus> </cell> <cell id='5'> <memory unit='KiB'>2097152</memory> <cpus num='2'> <cpu id='2' socket_id='5' core_id='2' siblings=''/> <cpu id='3' socket_id='5' core_id='3' siblings=''/> </cpus> </cell> <cell id='6'> <memory unit='KiB'>2097152</memory> <cpus num='2'> <cpu id='3' socket_id='6' core_id='3' siblings=''/> <cpu id='4' socket_id='6' core_id='4' siblings=''/> </cpus> </cell> </cells> </topology> <secmodel> <model>none</model> <doi>0</doi> </secmodel> </host> <guest> <os_type>hvm</os_type> <arch name='i686'> <wordsize>32</wordsize> <emulator>/usr/bin/qemu-system-i686</emulator> <machine>pc</machine> <machine>isapc</machine> <domain type='qemu'/> <domain type='kvm'> <emulator>/usr/bin/qemu-system-i686</emulator> <machine>pc</machine> <machine>isapc</machine> </domain> </arch> <features> <cpuselection/> </features> </guest> <guest> <os_type>hvm</os_type> <arch name='x86_64'> <wordsize>64</wordsize> <emulator>/usr/bin/qemu-system-x86_64</emulator> <machine>pc-0.11</machine> <machine canonical='pc-0.11'>pc</machine> <machine>pc-0.10</machine> <machine>isapc</machine> <domain type='qemu'/> <domain type='kvm'> <emulator>/usr/bin/qemu-system-x86_64</emulator> <machine>pc</machine> <machine>isapc</machine> </domain> <domain type='kvm'> <emulator>/usr/bin/qemu-system-x86_64</emulator> </domain> </arch> <features> <cpuselection/> </features> </guest> <guest> <os_type>hvm</os_type> <arch name='ppc64'> <wordsize>64</wordsize> <emulator>/usr/bin/qemu-system-ppc64</emulator> <machine>pseries</machine> <domain type='qemu'/> <domain type='kvm'/> </arch> </guest> <guest> <os_type>hvm</os_type> <arch name='ppc64le'> <wordsize>64</wordsize> <emulator>/usr/bin/qemu-system-ppc64</emulator> <machine>pseries</machine> <domain type='qemu'/> <domain type='kvm'/> </arch> </guest> <guest> <os_type>hvm</os_type> <arch name='ppc'> <wordsize>32</wordsize> <emulator>/usr/bin/qemu-system-ppc</emulator> <machine>g3beige</machine> <domain type='qemu'/> <domain type='kvm'/> </arch> </guest> <guest> <os_type>hvm</os_type> <arch name='riscv32'> <wordsize>32</wordsize> <emulator>/usr/bin/qemu-system-riscv32</emulator> <machine>spike_v1.10</machine> <machine>spike_v1.9.1</machine> <machine>sifive_e</machine> <machine>virt</machine> <machine>sifive_u</machine> <domain type='qemu'/> </arch> </guest> <guest> <os_type>hvm</os_type> <arch name='riscv64'> <wordsize>64</wordsize> <emulator>/usr/bin/qemu-system-riscv64</emulator> <machine>spike_v1.10</machine> <machine>spike_v1.9.1</machine> <machine>sifive_e</machine> <machine>virt</machine> <machine>sifive_u</machine> <domain type='qemu'/> </arch> </guest> <guest> <os_type>hvm</os_type> <arch name='s390x'> <wordsize>64</wordsize> <emulator>/usr/bin/qemu-system-s390x</emulator> <machine>s390-virtio</machine> <machine>s390-ccw-virtio</machine> <domain type='qemu'/> <domain type='kvm'/> </arch> </guest> <guest> <os_type>hvm</os_type> <arch name='armv7l'> <wordsize>32</wordsize> <emulator>/usr/bin/qemu-system-arm</emulator> <machine>vexpress-a9</machine> <machine>vexpress-a15</machine> <machine>versatilepb</machine> <domain type='qemu'/> <domain type='kvm'/> </arch> </guest> <guest> <os_type>hvm</os_type> <arch name='aarch64'> <wordsize>64</wordsize> <emulator>/usr/bin/qemu-system-aarch64</emulator> <machine>virt</machine> <domain type='qemu'/> <domain type='kvm'/> </arch> </guest> </capabilities> replies file: '<https://ci.centos.org/job/libvirt-check/systems=libvirt-fedora-rawhide/ws/t…'> 1) GetStatus ... OK 2) GetVersion ... OK 3) GetMachines ... OK 4) GetCPUDefinitions ... OK 5) GetCommands ... OK 6) GetTPMModels ... OK 7) GetCommandLineOptionParameters ... OK 8) qemuMonitorJSONTestAttachChardev(null) ... OK 9) qemuMonitorJSONTestAttachChardev(vc) ... OK 10) qemuMonitorJSONTestAttachChardev(pty) ... FAIL qemumonitorjsontest (exit status: 139) + 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-29 #116
by ci@centos.org 21 Nov '18

21 Nov '18
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-29/116/di…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 116 originally caused by: Started by upstream project "libvirt-go-build" build number 120 originally caused by: Started by upstream project "libvirt-build" build number 143 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/libvirt-go-check/systems=libvirt-fedora-29/ws/> [libvirt-go] $ /bin/sh -xe /tmp/jenkins8047072953202921933.sh + export 'TEST_ARGS=-tags api' + TEST_ARGS='-tags api' + go test -tags api Missing function 'virDomainSetIOThreadParams' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_GROW' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_MAX_NS' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_SHRINK' Missing enum 'VIR_DOMAIN_STATS_IOTHREAD' --- FAIL: TestAPICoverage (0.72s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 5 [running]: testing.tRunner.func1(0xc0000a8100) /usr/lib/golang/src/testing/testing.go:792 +0x387 panic(0x5c9ba0, 0x637180) /usr/lib/golang/src/runtime/panic.go:513 +0x1b9 _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-29/ws/.Te…> <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-29/ws/api…>:507 +0x554 testing.tRunner(0xc0000a8100, 0x618690) /usr/lib/golang/src/testing/testing.go:827 +0xbf created by testing.(*T).Run /usr/lib/golang/src/testing/testing.go:878 +0x353 exit status 2 FAIL _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-29/ws/> 1.013s Build step 'Execute shell' marked build as failure
1 3
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-go-check » libvirt-fedora-28 #116
by ci@centos.org 21 Nov '18

21 Nov '18
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-28/116/di…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 116 originally caused by: Started by upstream project "libvirt-go-build" build number 120 originally caused by: Started by upstream project "libvirt-build" build number 143 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/libvirt-go-check/systems=libvirt-fedora-28/ws/> [libvirt-go] $ /bin/sh -xe /tmp/jenkins4331590856766264293.sh + export 'TEST_ARGS=-tags api' + TEST_ARGS='-tags api' + go test -tags api Missing function 'virDomainSetIOThreadParams' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_GROW' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_MAX_NS' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_SHRINK' Missing enum 'VIR_DOMAIN_STATS_IOTHREAD' --- FAIL: TestAPICoverage (0.16s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 4 [running]: testing.tRunner.func1(0xc4200c80f0) /usr/lib/golang/src/testing/testing.go:742 +0x29d panic(0x5c0c20, 0x624b60) /usr/lib/golang/src/runtime/panic.go:502 +0x229 _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-28/ws/.Te…> <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-28/ws/api…>:507 +0x548 testing.tRunner(0xc4200c80f0, 0x60fc68) /usr/lib/golang/src/testing/testing.go:777 +0xd0 created by testing.(*T).Run /usr/lib/golang/src/testing/testing.go:824 +0x2e0 exit status 2 FAIL _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-28/ws/> 0.208s Build step 'Execute shell' marked build as failure
1 3
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-go-check » libvirt-fedora-rawhide #116
by ci@centos.org 21 Nov '18

21 Nov '18
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-rawhide/1…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 116 originally caused by: Started by upstream project "libvirt-go-build" build number 120 originally caused by: Started by upstream project "libvirt-build" build number 143 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/libvirt-go-check/systems=libvirt-fedora-rawhide/w…> [libvirt-go] $ /bin/sh -xe /tmp/jenkins1305721960218756874.sh + export 'TEST_ARGS=-tags api' + TEST_ARGS='-tags api' + go test -tags api Missing function 'virDomainSetIOThreadParams' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_GROW' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_MAX_NS' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_SHRINK' Missing enum 'VIR_DOMAIN_STATS_IOTHREAD' --- FAIL: TestAPICoverage (1.32s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 19 [running]: testing.tRunner.func1(0xc0000c0100) /usr/lib/golang/src/testing/testing.go:792 +0x387 panic(0x5c9ba0, 0x637180) /usr/lib/golang/src/runtime/panic.go:513 +0x1b9 _<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…>:507 +0x554 testing.tRunner(0xc0000c0100, 0x618690) /usr/lib/golang/src/testing/testing.go:827 +0xbf created by testing.(*T).Run /usr/lib/golang/src/testing/testing.go:878 +0x353 exit status 2 FAIL _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-fedora-rawhide/w…> 1.644s Build step 'Execute shell' marked build as failure
1 3
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-go-check » libvirt-freebsd-10 #116
by ci@centos.org 21 Nov '18

21 Nov '18
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-10/116/d…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 116 originally caused by: Started by upstream project "libvirt-go-build" build number 120 originally caused by: Started by upstream project "libvirt-build" build number 143 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/libvirt-go-check/systems=libvirt-freebsd-10/ws/> [libvirt-go] $ /bin/sh -xe /tmp/jenkins5691669486333589428.sh + export 'TEST_ARGS=-tags api' + go test -tags api Missing function 'virDomainSetIOThreadParams' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_GROW' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_MAX_NS' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_SHRINK' Missing enum 'VIR_DOMAIN_STATS_IOTHREAD' --- FAIL: TestAPICoverage (0.30s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 19 [running]: testing.tRunner.func1(0xc0000c6100) /usr/local/go/src/testing/testing.go:792 +0x387 panic(0x5c94c0, 0x636030) /usr/local/go/src/runtime/panic.go:513 +0x1b9 _/usr<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-10/ws/.T…> /usr<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-10/ws/ap…>:507 +0x554 testing.tRunner(0xc0000c6100, 0x617740) /usr/local/go/src/testing/testing.go:827 +0xbf created by testing.(*T).Run /usr/local/go/src/testing/testing.go:878 +0x353 exit status 2 FAIL _/usr<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-10/ws/> 0.371s Build step 'Execute shell' marked build as failure
1 3
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-go-check » libvirt-freebsd-11 #116
by ci@centos.org 21 Nov '18

21 Nov '18
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-11/116/d…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 116 originally caused by: Started by upstream project "libvirt-go-build" build number 120 originally caused by: Started by upstream project "libvirt-build" build number 143 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/libvirt-go-check/systems=libvirt-freebsd-11/ws/> [libvirt-go] $ /bin/sh -xe /tmp/jenkins2529782714929362853.sh + export 'TEST_ARGS=-tags api' + go test -tags api Missing function 'virDomainSetIOThreadParams' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_GROW' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_MAX_NS' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_SHRINK' Missing enum 'VIR_DOMAIN_STATS_IOTHREAD' --- FAIL: TestAPICoverage (0.31s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 5 [running]: testing.tRunner.func1(0xc0000aa100) /usr/local/go/src/testing/testing.go:792 +0x387 panic(0x5c87e0, 0x6353d0) /usr/local/go/src/runtime/panic.go:513 +0x1b9 _/usr<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-11/ws/.T…> /usr<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-11/ws/ap…>:507 +0x554 testing.tRunner(0xc0000aa100, 0x616aa0) /usr/local/go/src/testing/testing.go:827 +0xbf created by testing.(*T).Run /usr/local/go/src/testing/testing.go:878 +0x353 exit status 2 FAIL _/usr<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-freebsd-11/ws/> 0.451s Build step 'Execute shell' marked build as failure
1 3
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-go-check » libvirt-debian-8 #116
by ci@centos.org 21 Nov '18

21 Nov '18
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-8/116/dis…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 116 originally caused by: Started by upstream project "libvirt-go-build" build number 120 originally caused by: Started by upstream project "libvirt-build" build number 143 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/libvirt-go-check/systems=libvirt-debian-8/ws/> [libvirt-go] $ /bin/sh -xe /tmp/jenkins4386244522910186647.sh + export TEST_ARGS=-tags api + go test -tags api Missing function 'virDomainSetIOThreadParams' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_GROW' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_MAX_NS' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_SHRINK' Missing enum 'VIR_DOMAIN_STATS_IOTHREAD' --- FAIL: TestAPICoverage (0.31s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 5 [running]: panic(0x5b21c0, 0xc4200edef0) /usr/lib/go-1.7/src/runtime/panic.go:500 +0x1a1 testing.tRunner.func1(0xc42007c180) /usr/lib/go-1.7/src/testing/testing.go:579 +0x25d panic(0x5b21c0, 0xc4200edef0) /usr/lib/go-1.7/src/runtime/panic.go:458 +0x243 _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-8/ws/.Tes…> <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-8/ws/api_…>:507 +0x5ff testing.tRunner(0xc42007c180, 0x605948) /usr/lib/go-1.7/src/testing/testing.go:610 +0x81 created by testing.(*T).Run /usr/lib/go-1.7/src/testing/testing.go:646 +0x2ec exit status 2 FAIL _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-8/ws/> 0.390s Build step 'Execute shell' marked build as failure
1 3
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-go-check » libvirt-debian-9 #116
by ci@centos.org 21 Nov '18

21 Nov '18
See <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-9/116/dis…> ------------------------------------------ Started by upstream project "libvirt-go-check" build number 116 originally caused by: Started by upstream project "libvirt-go-build" build number 120 originally caused by: Started by upstream project "libvirt-build" build number 143 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/libvirt-go-check/systems=libvirt-debian-9/ws/> [libvirt-go] $ /bin/sh -xe /tmp/jenkins2557976273957139285.sh + export TEST_ARGS=-tags api + go test -tags api Missing function 'virDomainSetIOThreadParams' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_GROW' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_MAX_NS' Missing macro 'VIR_DOMAIN_IOTHREAD_POLL_SHRINK' Missing enum 'VIR_DOMAIN_STATS_IOTHREAD' --- FAIL: TestAPICoverage (0.21s) panic: Missing symbols found [recovered] panic: Missing symbols found goroutine 5 [running]: panic(0x559e6cee3880, 0xc420224120) /usr/lib/go-1.7/src/runtime/panic.go:500 +0x1a1 testing.tRunner.func1(0xc420078180) /usr/lib/go-1.7/src/testing/testing.go:579 +0x25d panic(0x559e6cee3880, 0xc420224120) /usr/lib/go-1.7/src/runtime/panic.go:458 +0x243 _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-9/ws/.Tes…> <https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-9/ws/api_…>:507 +0x5ff testing.tRunner(0xc420078180, 0x559e6cf37008) /usr/lib/go-1.7/src/testing/testing.go:610 +0x81 created by testing.(*T).Run /usr/lib/go-1.7/src/testing/testing.go:646 +0x2ec exit status 2 FAIL _<https://ci.centos.org/job/libvirt-go-check/systems=libvirt-debian-9/ws/> 0.254s Build step 'Execute shell' marked build as failure
1 3
0 0
  • ← Newer
  • 1
  • ...
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • ...
  • 989
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.