[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-master-check » libvirt-fedora-27 #378
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...>
------------------------------------------
Started by upstream project "libvirt-dbus-master-check" build number 378
originally caused by:
Started by upstream project "libvirt-dbus-master-syntax-check" build number 41
originally caused by:
Started by upstream project "libvirt-dbus-master-build" build number 413
originally caused by:
Started by upstream project "libvirt-glib-master-build" build number 1385
originally caused by:
Started by upstream project "libvirt-master-build" build number 1729
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-27 (libvirt) in workspace <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...>
[libvirt-dbus-master] $ /bin/sh -xe /tmp/jenkins774479135995149336.sh
+ cd build
+ /usr/bin/gmake check
Making check in data
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
Making check in docs
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
Making check in src
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
Making check in tests
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
/usr/bin/gmake test_util
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
CC test_util-test_util.o
CCLD test_util
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
/usr/bin/gmake check-TESTS
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
PASS: test_util
PASS: test_interface.py
PASS: test_domain.py
PASS: test_network.py
PASS: test_nodedev.py
FAIL: test_connect.py
PASS: test_storage.py
============================================================================
Testsuite summary for libvirt-dbus 1.3.0
============================================================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
See tests/test-suite.log
Please report to libvir-list(a)redhat.com
============================================================================
gmake[3]: *** [Makefile:759: test-suite.log] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[2]: *** [Makefile:867: check-TESTS] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: *** [Makefile:980: check-am] Error 2
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake: *** [Makefile:460: check-recursive] Error 1
+ cat tests/test-suite.log
==============================================
libvirt-dbus 1.3.0: tests/test-suite.log
==============================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test_connect.py
=====================
============================= test session starts ==============================
platform linux -- Python 3.6.6, pytest-3.2.3, py-1.4.34, pluggy-0.4.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...,> inifile:
collected 35 items
../../tests/test_connect.py ................................E.E
==================================== ERRORS ====================================
ERROR at setup of TestConnect.test_connect_storage_pool_lookup_by_property[StoragePoolLookupByUUID-UUID]
self = <test_connect.TestConnect object at 0x7f15a7a7bc50>
request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_connect_storage_pool_lookup_by_property[StoragePoolLookupByUUID-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_storage_vol_lookup_by_property[StorageVolLookupByPath-Path]
self = <test_connect.TestConnect object at 0x7f15a7ade828>
@pytest.fixture
def storage_volume_create(self):
""" Fixture to create dummy storage volume on the test driver
This fixture should be used in the setup of every test manipulating
with test volume.
"""
_, test_storage_pool = self.get_test_storage_pool()
interface_obj = dbus.Interface(test_storage_pool,
'org.libvirt.StoragePool')
> path = interface_obj.StorageVolCreateXML(xmldata.minimal_storage_vol_xml, 0)
../../tests/libvirttest.py:122:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f15a7f69990>
bus_name = dbus.String(':1.33')
object_path = dbus.ObjectPath('/org/libvirt/Test/storagepool/_dfe224cb_28fb_8dd0_c4b2_64eb3f0f4566')
dbus_interface = 'org.libvirt.StoragePool', method = 'StorageVolCreateXML'
signature = 'su'
args = ('\n<volume>\n <name>sparse.img</name>\n <capacity unit="G">2</capacity>\n <target>\n <path>/var/lib/virt/images/sparse.img</path>\n </target>\n</volume>\n', 0)
timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/storagepool/_dfe224cb_28fb_8dd0_c4b2_64eb3f0f4566, iface: org.libvirt.StoragePool, member: StorageVolCreateXML dest: :1.33>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: operation failed: storage vol already exists
/usr/lib64/python3.6/site-packages/dbus/connection.py:651: DBusException
===================== 33 passed, 2 error in 22.59 seconds ======================
FAIL test_connect.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
6 years, 3 months
[Libvirt-ci] Build failed in Jenkins: libvirt-master-check » libvirt-freebsd-11 #1329
by ci@centos.org
See <https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...>
------------------------------------------
[...truncated 24.46 KB...]
PASS: virlogtest
PASS: virrotatingfiletest
PASS: virstringtest
SKIP: virportallocatortest
PASS: sysinfotest
SKIP: virkmodtest
PASS: vircapstest
PASS: domaincapstest
PASS: domainconftest
SKIP: virhostdevtest
SKIP: virnetdevtest
PASS: virtypedparamtest
FAIL: vshtabletest
PASS: virnetmessagetest
PASS: virschematest
PASS: virnetdaemontest
PASS: virnetserverclienttest
PASS: virnetsockettest
SKIP: virnettlscontexttest
SKIP: virnettlssessiontest
PASS: fdstreamtest
PASS: virdbustest
SKIP: virsystemdtest
PASS: virpolkittest
PASS: qemuxml2xmltest
PASS: qemuargv2xmltest
PASS: domainsnapshotxml2xmltest
PASS: qemuxml2argvtest
PASS: qemumonitorjsontest
PASS: qemuagenttest
PASS: qemuhotplugtest
PASS: qemucaps2xmltest
PASS: qemumemlocktest
PASS: qemucommandutiltest
PASS: qemublocktest
PASS: qemumigparamstest
PASS: esxutilstest
PASS: vboxsnapshotxmltest
PASS: vmx2xmltest
PASS: xml2vmxtest
PASS: vmwarevertest
PASS: bhyvexml2argvtest
PASS: qemucapabilitiestest
PASS: bhyveargv2xmltest
PASS: bhyvexml2xmltest
PASS: virjsontest
PASS: networkxml2xmltest
PASS: networkxml2conftest
PASS: networkxml2xmlupdatetest
SKIP: networkxml2firewalltest
PASS: nwfilterxml2xmltest
PASS: virnwfilterbindingxml2xmltest
PASS: storagevolxml2argvtest
PASS: virstorageutiltest
PASS: nsstest
PASS: nssguesttest
PASS: storagevolxml2xmltest
PASS: storagepoolxml2xmltest
PASS: nodedevxml2xmltest
PASS: interfacexml2xmltest
PASS: metadatatest
PASS: secretxml2xmltest
PASS: genericxml2xmltest
PASS: eventtest
PASS: virdrivermoduletest
PASS: objecteventtest
PASS: virmacmaptest
PASS: libvirtd-fail
PASS: cputest
PASS: libvirtd-pool
PASS: virsh-cpuset
PASS: virsh-define-dev-segfault
PASS: virsh-int-overflow
SKIP: virsh-optparse
PASS: virsh-read-bufsiz
PASS: virsh-read-non-seekable
PASS: virsh-schedinfo
PASS: virsh-self-test
PASS: virt-admin-self-test
PASS: virsh-start
PASS: virsh-undefine
PASS: virsh-uriprecedence
PASS: virsh-vcpupin
PASS: virshtest
============================================================================
Testsuite summary for libvirt 4.7.0
============================================================================
# TOTAL: 110
# PASS: 95
# SKIP: 14
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
See tests/test-suite.log
Please report to libvir-list(a)redhat.com
============================================================================
gmake[3]: *** [Makefile:5838: test-suite.log] Error 1
gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake[2]: *** [Makefile:5946: check-TESTS] Error 2
gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake[1]: *** [Makefile:6951: check-am] Error 2
gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake: *** [Makefile:2108: check-recursive] Error 1
+ cat tests/test-suite.log
=========================================
libvirt 4.7.0: tests/test-suite.log
=========================================
# TOTAL: 110
# PASS: 95
# SKIP: 14
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
SKIP: virhostcputest
====================
SKIP virhostcputest (exit status: 77)
SKIP: shunloadtest
==================
SKIP shunloadtest (exit status: 77)
SKIP: vircgrouptest
===================
SKIP vircgrouptest (exit status: 77)
SKIP: virpcitest
================
SKIP virpcitest (exit status: 77)
SKIP: virfirewalltest
=====================
SKIP virfirewalltest (exit status: 77)
SKIP: virportallocatortest
==========================
SKIP virportallocatortest (exit status: 77)
SKIP: virkmodtest
=================
SKIP virkmodtest (exit status: 77)
SKIP: virhostdevtest
====================
SKIP virhostdevtest (exit status: 77)
SKIP: virnetdevtest
===================
SKIP virnetdevtest (exit status: 77)
FAIL: vshtabletest
==================
TEST: vshtabletest
1) testVshTableNew ... libvirt: error : internal error: Table row cannot be empty
OK
2) testVshTableHeader ... OK
3) testVshTableRowAppend ... libvirt: error : internal error: Incorrect number of cells in a table row
OK
4) testUnicode ...
Offset 0
Expect [ Id ������ ����������������������
-----------------------------------------
1 fedora28 running
2 ������������rhel7.5������������ running
]
Actual [ Id ������ ����������������������
-----------------------------------
1 fedora28 running
2 ������������rhel7.5������������ running
]
... FAILED
5) testUnicodeArabic ...
Offset 0
Expect [ ������ ��������� ��������������� ��� ������������ ������������������
-------------------------------------------------------------------------------------------
1 ������������ ������������������ ��������� ������, ���� ��������������� ������������������ �������������������� ���������, ��������� ���������. ������������ ��� ������ ���������
������������ �������������������� ������, ������������������ ��������������������� ������
]
Actual [ ������ ��������� ��������������� ��� ������������ ������������������
--------------------------------------------------------------------------------------------------
1 ������������ ������������������ ��������� ������, ���� ��������������� ������������������ ������������������\xff\xff ���������, ��������� ���������. ������������ ��� ������ ���������
������������ �������������������� ������, ������������������ ��������������������� ������
]
... FAILED
6) testUnicodeZeroWidthChar ...
Offset 0
Expect [ I���d Name ���Status
--------------------------
1��� fedora28 run���ning
2 rhel7.5 running
]
Actual [ I\xff\xff\xffd Name \xff\xff\xffStatus
--------------------------------------------------
1\xff\xff\xff fedora28 run\xff\xff\xffning
2 rhel7.5 running
]
... FAILED
7) testUnicodeCombiningChar ... OK
8) testUnicodeNonPrintableChar ... OK
9) testNTables ... OK
FAIL vshtabletest (exit status: 1)
SKIP: virnettlscontexttest
==========================
SKIP virnettlscontexttest (exit status: 77)
SKIP: virnettlssessiontest
==========================
SKIP virnettlssessiontest (exit status: 77)
SKIP: virsystemdtest
====================
SKIP virsystemdtest (exit status: 77)
SKIP: networkxml2firewalltest
=============================
SKIP networkxml2firewalltest (exit status: 77)
SKIP: virsh-optparse
====================
../../tests/virsh-optparse: skipping test:
This test is very expensive, so it is disabled by default.
To run it anyway, rerun: make check VIR_TEST_EXPENSIVE=1
SKIP virsh-optparse (exit status: 77)
+ exit 1
Build step 'Execute shell' marked build as failure
6 years, 3 months
[Libvirt-ci] Build failed in Jenkins: libvirt-glib-master-build-mingw64 » libvirt-fedora-rawhide #281
by ci@centos.org
See <https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...>
------------------------------------------
[...truncated 10.26 KB...]
checking whether C compiler handles -Wdeprecated-declarations... yes
checking whether C compiler handles -Wdisabled-optimization... yes
checking whether C compiler handles -Wdiv-by-zero... yes
checking whether C compiler handles -Wdouble-promotion... yes
checking whether C compiler handles -Wempty-body... yes
checking whether C compiler handles -Wendif-labels... yes
checking whether C compiler handles -Wextra... yes
checking whether C compiler handles -Wformat-contains-nul... yes
checking whether C compiler handles -Wformat-extra-args... yes
checking whether C compiler handles -Wformat-security... yes
checking whether C compiler handles -Wformat-y2k... yes
checking whether C compiler handles -Wformat-zero-length... yes
checking whether C compiler handles -Wfree-nonheap-object... yes
checking whether C compiler handles -Wignored-qualifiers... yes
checking whether C compiler handles -Wimplicit... yes
checking whether C compiler handles -Wimplicit-function-declaration... yes
checking whether C compiler handles -Wimplicit-int... yes
checking whether C compiler handles -Winit-self... yes
checking whether C compiler handles -Winline... yes
checking whether C compiler handles -Wint-to-pointer-cast... yes
checking whether C compiler handles -Winvalid-memory-model... yes
checking whether C compiler handles -Winvalid-pch... yes
checking whether C compiler handles -Wjump-misses-init... yes
checking whether C compiler handles -Wlogical-op... yes
checking whether C compiler handles -Wmain... yes
checking whether C compiler handles -Wmaybe-uninitialized... yes
checking whether C compiler handles -Wmissing-braces... yes
checking whether C compiler handles -Wmissing-declarations... yes
checking whether C compiler handles -Wmissing-field-initializers... yes
checking whether C compiler handles -Wmissing-include-dirs... yes
checking whether C compiler handles -Wmissing-parameter-type... yes
checking whether C compiler handles -Wmissing-prototypes... yes
checking whether C compiler handles -Wmultichar... yes
checking whether C compiler handles -Wnarrowing... yes
checking whether C compiler handles -Wnested-externs... yes
checking whether C compiler handles -Wnonnull... yes
checking whether C compiler handles -Wold-style-declaration... yes
checking whether C compiler handles -Wold-style-definition... yes
checking whether C compiler handles -Wopenmp-simd... yes
checking whether C compiler handles -Woverflow... yes
checking whether C compiler handles -Woverride-init... yes
checking whether C compiler handles -Wpacked-bitfield-compat... yes
checking whether C compiler handles -Wparentheses... yes
checking whether C compiler handles -Wpointer-arith... yes
checking whether C compiler handles -Wpointer-sign... yes
checking whether C compiler handles -Wpointer-to-int-cast... yes
checking whether C compiler handles -Wpragmas... yes
checking whether C compiler handles -Wreturn-local-addr... yes
checking whether C compiler handles -Wreturn-type... yes
checking whether C compiler handles -Wsequence-point... yes
checking whether C compiler handles -Wshadow... yes
checking whether C compiler handles -Wsizeof-pointer-memaccess... yes
checking whether C compiler handles -Wstrict-aliasing... yes
checking whether C compiler handles -Wstrict-prototypes... yes
checking whether C compiler handles -Wsuggest-attribute=const... yes
checking whether C compiler handles -Wsuggest-attribute=format... yes
checking whether C compiler handles -Wsuggest-attribute=noreturn... yes
checking whether C compiler handles -Wsuggest-attribute=pure... yes
checking whether C compiler handles -Wswitch... yes
checking whether C compiler handles -Wsync-nand... yes
checking whether C compiler handles -Wtrampolines... yes
checking whether C compiler handles -Wtrigraphs... yes
checking whether C compiler handles -Wtype-limits... yes
checking whether C compiler handles -Wuninitialized... yes
checking whether C compiler handles -Wunknown-pragmas... yes
checking whether C compiler handles -Wunused... yes
checking whether C compiler handles -Wunused-but-set-parameter... yes
checking whether C compiler handles -Wunused-but-set-variable... yes
checking whether C compiler handles -Wunused-function... yes
checking whether C compiler handles -Wunused-label... yes
checking whether C compiler handles -Wunused-local-typedefs... yes
checking whether C compiler handles -Wunused-parameter... yes
checking whether C compiler handles -Wunused-result... yes
checking whether C compiler handles -Wunused-value... yes
checking whether C compiler handles -Wunused-variable... yes
checking whether C compiler handles -Wvarargs... yes
checking whether C compiler handles -Wvariadic-macros... yes
checking whether C compiler handles -Wvector-operation-performance... yes
checking whether C compiler handles -Wvolatile-register-var... yes
checking whether C compiler handles -Wwrite-strings... yes
checking whether C compiler handles -Wnormalized=nfc... yes
checking whether C compiler handles -Wno-sign-compare... yes
checking whether C compiler handles -Wjump-misses-init... (cached) yes
checking whether C compiler handles -Wno-cast-function-type... yes
checking whether C compiler handles -Wno-format-nonliteral... yes
checking whether C compiler handles -Wframe-larger-than=4096... yes
checking whether C compiler handles -fexceptions... yes
checking whether C compiler handles -fasynchronous-unwind-tables... yes
checking whether C compiler handles -fipa-pure-const... yes
checking whether C compiler handles -Wno-suggest-attribute=pure... yes
checking whether C compiler handles -Wno-suggest-attribute=const... yes
checking whether C compiler handles -Werror... yes
checking for x86_64-w64-mingw32-pkg-config... /usr/bin/x86_64-w64-mingw32-pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for LIBVIRT... yes
checking for virDomainOpenGraphicsFD... yes
checking for virNetworkGetDHCPLeases... yes
checking for GLIB2... yes
checking for GTHREAD2... yes
checking for GOBJECT2... yes
checking for GIO2... yes
checking for LIBXML2... yes
checking whether NLS is requested... yes
checking for intltool >= 0.35.0... 0.51.0 found
checking for intltool-update... /usr/bin/intltool-update
checking for intltool-merge... /usr/bin/intltool-merge
checking for intltool-extract... /usr/bin/intltool-extract
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for perl... /usr/bin/perl
checking for perl >= 5.8.1... 5.28.0
checking for XML::Parser... ok
checking for gtk-doc... no
configure: WARNING:
You will not be able to create source packages with 'make dist'
because gtk-doc >= 1.10 is not found.
checking for gtkdoc-check... gtkdoc-check.test
checking for gtkdoc-check... /usr/bin/gtkdoc-check
checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
checking for gtkdoc-mkpdf... /usr/bin/gtkdoc-mkpdf
checking whether to build gtk-doc documentation... no
checking for GTKDOC_DEPS... yes
checking for gobject-introspection... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libvirt-glib/Makefile
config.status: creating libvirt-gconfig/Makefile
config.status: creating libvirt-gconfig/tests/Makefile
config.status: creating libvirt-gobject/Makefile
config.status: creating examples/Makefile
config.status: creating vapi/Makefile
config.status: creating docs/Makefile
config.status: creating docs/libvirt-glib/Makefile
config.status: creating docs/libvirt-glib/version.xml
config.status: creating docs/libvirt-gobject/Makefile
config.status: creating docs/libvirt-gconfig/Makefile
config.status: creating po/Makefile.in
config.status: creating tests/Makefile
config.status: creating libvirt-glib-1.0.pc
config.status: creating libvirt-gconfig-1.0.pc
config.status: creating libvirt-gobject-1.0.pc
config.status: creating libvirt-glib.spec
config.status: creating mingw-libvirt-glib.spec
config.status: creating config.h
config.status: linking ../GNUmakefile to GNUmakefile
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po/stamp-it commands
Now type 'make' to compile libvirt-glib.
+ /usr/bin/gmake
/usr/bin/gmake all-recursive
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
Making all in libvirt-glib
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
CC libvirt_glib_1_0_la-libvirt-glib-error.lo
CC libvirt_glib_1_0_la-libvirt-glib-event.lo
CC libvirt_glib_1_0_la-libvirt-glib-main.lo
CCLD libvirt-glib-1.0.la
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
Making all in libvirt-gconfig
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
GEN libvirt-gconfig-enum-types.c
GEN libvirt-gconfig-enum-types.h
/usr/bin/gmake all-recursive
gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
Making all in .
gmake[4]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
CC libvirt_gconfig_1_0_la-libvirt-gconfig-object.lo
CC libvirt_gconfig_1_0_la-libvirt-gconfig-main.lo
CC libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.lo
CC libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.lo
../../libvirt-gconfig/libvirt-gconfig-capabilities.c: In function 'gvir_config_capabilities_class_init':
../../libvirt-gconfig/libvirt-gconfig-capabilities.c:42:5: error: 'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
g_type_class_add_private(klass, sizeof(GVirConfigCapabilitiesPrivate));
^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gobject.h:24,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gbinding.h:29,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib-object.h:23,
from ../../libvirt-gconfig/libvirt-gconfig.h:26,
from ../../libvirt-gconfig/libvirt-gconfig-capabilities.c:26:
/usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
void g_type_class_add_private (gpointer g_class,
^~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
gmake[4]: *** [Makefile:1082: libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.lo] Error 1
gmake[4]: *** Waiting for unfinished jobs....
../../libvirt-gconfig/libvirt-gconfig-object.c: In function 'gvir_config_object_class_init':
../../libvirt-gconfig/libvirt-gconfig-object.c:179:5: error: 'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
g_type_class_add_private(klass, sizeof(GVirConfigObjectPrivate));
^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gobject.h:24,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gbinding.h:29,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib-object.h:23,
from ../../libvirt-gconfig/libvirt-gconfig.h:26,
from ../../libvirt-gconfig/libvirt-gconfig-object.c:31:
/usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
void g_type_class_add_private (gpointer g_class,
^~~~~~~~~~~~~~~~~~~~~~~~
../../libvirt-gconfig/libvirt-gconfig-object.c: In function 'gvir_config_object_set_node_content_uint64':
../../libvirt-gconfig/libvirt-gconfig-object.c:593:27: error: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'guint64' {aka 'long long unsigned int'} [-Werror=format=]
str = g_strdup_printf("%"G_GUINT64_FORMAT, value);
^~~ ~~~~~
In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gtypes.h:32,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/galloca.h:32,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib.h:30,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gi18n-lib.h:21,
from ../../libvirt-gconfig/libvirt-gconfig-object.c:29:
/usr/x86_64-w64-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h:51:30: note: format string is defined here
#define G_GUINT64_FORMAT "I64u"
../../libvirt-gconfig/libvirt-gconfig-object.c: In function 'gvir_config_object_set_attribute_with_type':
../../libvirt-gconfig/libvirt-gconfig-object.c:842:39: error: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'guint64' {aka 'long long unsigned int'} [-Werror=format=]
str = g_strdup_printf("%"G_GUINT64_FORMAT, val);
^~~ ~~~
In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gtypes.h:32,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/galloca.h:32,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib.h:30,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gi18n-lib.h:21,
from ../../libvirt-gconfig/libvirt-gconfig-object.c:29:
/usr/x86_64-w64-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h:51:30: note: format string is defined here
#define G_GUINT64_FORMAT "I64u"
cc1: all warnings being treated as errors
gmake[4]: *** [Makefile:1068: libvirt_gconfig_1_0_la-libvirt-gconfig-object.lo] Error 1
../../libvirt-gconfig/libvirt-gconfig-capabilities-host.c: In function 'gvir_config_capabilities_host_class_init':
../../libvirt-gconfig/libvirt-gconfig-capabilities-host.c:43:5: error: 'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
g_type_class_add_private(klass, sizeof(GVirConfigCapabilitiesHostPrivate));
^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gobject.h:24,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gbinding.h:29,
from /usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/glib-object.h:23,
from ../../libvirt-gconfig/libvirt-gconfig.h:26,
from ../../libvirt-gconfig/libvirt-gconfig-capabilities-host.c:27:
/usr/x86_64-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
void g_type_class_add_private (gpointer g_class,
^~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
gmake[4]: *** [Makefile:1089: libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.lo] Error 1
gmake[4]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
gmake[3]: *** [Makefile:1752: all-recursive] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
gmake[2]: *** [Makefile:877: all] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
gmake[1]: *** [Makefile:559: all-recursive] Error 1
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw64/systems=libvi...'>
gmake: *** [Makefile:460: all] Error 2
Build step 'Execute shell' marked build as failure
6 years, 3 months
[Libvirt-ci] Build failed in Jenkins: libvirt-glib-master-build-mingw32 » libvirt-fedora-rawhide #267
by ci@centos.org
See <https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...>
------------------------------------------
[...truncated 10.16 KB...]
checking whether C compiler handles -Wdeprecated-declarations... yes
checking whether C compiler handles -Wdisabled-optimization... yes
checking whether C compiler handles -Wdiv-by-zero... yes
checking whether C compiler handles -Wdouble-promotion... yes
checking whether C compiler handles -Wempty-body... yes
checking whether C compiler handles -Wendif-labels... yes
checking whether C compiler handles -Wextra... yes
checking whether C compiler handles -Wformat-contains-nul... yes
checking whether C compiler handles -Wformat-extra-args... yes
checking whether C compiler handles -Wformat-security... yes
checking whether C compiler handles -Wformat-y2k... yes
checking whether C compiler handles -Wformat-zero-length... yes
checking whether C compiler handles -Wfree-nonheap-object... yes
checking whether C compiler handles -Wignored-qualifiers... yes
checking whether C compiler handles -Wimplicit... yes
checking whether C compiler handles -Wimplicit-function-declaration... yes
checking whether C compiler handles -Wimplicit-int... yes
checking whether C compiler handles -Winit-self... yes
checking whether C compiler handles -Winline... yes
checking whether C compiler handles -Wint-to-pointer-cast... yes
checking whether C compiler handles -Winvalid-memory-model... yes
checking whether C compiler handles -Winvalid-pch... yes
checking whether C compiler handles -Wjump-misses-init... yes
checking whether C compiler handles -Wlogical-op... yes
checking whether C compiler handles -Wmain... yes
checking whether C compiler handles -Wmaybe-uninitialized... yes
checking whether C compiler handles -Wmissing-braces... yes
checking whether C compiler handles -Wmissing-declarations... yes
checking whether C compiler handles -Wmissing-field-initializers... yes
checking whether C compiler handles -Wmissing-include-dirs... yes
checking whether C compiler handles -Wmissing-parameter-type... yes
checking whether C compiler handles -Wmissing-prototypes... yes
checking whether C compiler handles -Wmultichar... yes
checking whether C compiler handles -Wnarrowing... yes
checking whether C compiler handles -Wnested-externs... yes
checking whether C compiler handles -Wnonnull... yes
checking whether C compiler handles -Wold-style-declaration... yes
checking whether C compiler handles -Wold-style-definition... yes
checking whether C compiler handles -Wopenmp-simd... yes
checking whether C compiler handles -Woverflow... yes
checking whether C compiler handles -Woverride-init... yes
checking whether C compiler handles -Wpacked-bitfield-compat... yes
checking whether C compiler handles -Wparentheses... yes
checking whether C compiler handles -Wpointer-arith... yes
checking whether C compiler handles -Wpointer-sign... yes
checking whether C compiler handles -Wpointer-to-int-cast... yes
checking whether C compiler handles -Wpragmas... yes
checking whether C compiler handles -Wreturn-local-addr... yes
checking whether C compiler handles -Wreturn-type... yes
checking whether C compiler handles -Wsequence-point... yes
checking whether C compiler handles -Wshadow... yes
checking whether C compiler handles -Wsizeof-pointer-memaccess... yes
checking whether C compiler handles -Wstrict-aliasing... yes
checking whether C compiler handles -Wstrict-prototypes... yes
checking whether C compiler handles -Wsuggest-attribute=const... yes
checking whether C compiler handles -Wsuggest-attribute=format... yes
checking whether C compiler handles -Wsuggest-attribute=noreturn... yes
checking whether C compiler handles -Wsuggest-attribute=pure... yes
checking whether C compiler handles -Wswitch... yes
checking whether C compiler handles -Wsync-nand... yes
checking whether C compiler handles -Wtrampolines... yes
checking whether C compiler handles -Wtrigraphs... yes
checking whether C compiler handles -Wtype-limits... yes
checking whether C compiler handles -Wuninitialized... yes
checking whether C compiler handles -Wunknown-pragmas... yes
checking whether C compiler handles -Wunused... yes
checking whether C compiler handles -Wunused-but-set-parameter... yes
checking whether C compiler handles -Wunused-but-set-variable... yes
checking whether C compiler handles -Wunused-function... yes
checking whether C compiler handles -Wunused-label... yes
checking whether C compiler handles -Wunused-local-typedefs... yes
checking whether C compiler handles -Wunused-parameter... yes
checking whether C compiler handles -Wunused-result... yes
checking whether C compiler handles -Wunused-value... yes
checking whether C compiler handles -Wunused-variable... yes
checking whether C compiler handles -Wvarargs... yes
checking whether C compiler handles -Wvariadic-macros... yes
checking whether C compiler handles -Wvector-operation-performance... yes
checking whether C compiler handles -Wvolatile-register-var... yes
checking whether C compiler handles -Wwrite-strings... yes
checking whether C compiler handles -Wnormalized=nfc... yes
checking whether C compiler handles -Wno-sign-compare... yes
checking whether C compiler handles -Wjump-misses-init... (cached) yes
checking whether C compiler handles -Wno-cast-function-type... yes
checking whether C compiler handles -Wno-format-nonliteral... yes
checking whether C compiler handles -Wframe-larger-than=4096... yes
checking whether C compiler handles -fexceptions... yes
checking whether C compiler handles -fasynchronous-unwind-tables... yes
checking whether C compiler handles -fipa-pure-const... yes
checking whether C compiler handles -Wno-suggest-attribute=pure... yes
checking whether C compiler handles -Wno-suggest-attribute=const... yes
checking whether C compiler handles -Werror... yes
checking for i686-w64-mingw32-pkg-config... /usr/bin/i686-w64-mingw32-pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for LIBVIRT... yes
checking for virDomainOpenGraphicsFD... yes
checking for virNetworkGetDHCPLeases... yes
checking for GLIB2... yes
checking for GTHREAD2... yes
checking for GOBJECT2... yes
checking for GIO2... yes
checking for LIBXML2... yes
checking whether NLS is requested... yes
checking for intltool >= 0.35.0... 0.51.0 found
checking for intltool-update... /usr/bin/intltool-update
checking for intltool-merge... /usr/bin/intltool-merge
checking for intltool-extract... /usr/bin/intltool-extract
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for perl... /usr/bin/perl
checking for perl >= 5.8.1... 5.28.0
checking for XML::Parser... ok
checking for gtk-doc... no
configure: WARNING:
You will not be able to create source packages with 'make dist'
because gtk-doc >= 1.10 is not found.
checking for gtkdoc-check... gtkdoc-check.test
checking for gtkdoc-check... /usr/bin/gtkdoc-check
checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
checking for gtkdoc-mkpdf... /usr/bin/gtkdoc-mkpdf
checking whether to build gtk-doc documentation... no
checking for GTKDOC_DEPS... yes
checking for gobject-introspection... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libvirt-glib/Makefile
config.status: creating libvirt-gconfig/Makefile
config.status: creating libvirt-gconfig/tests/Makefile
config.status: creating libvirt-gobject/Makefile
config.status: creating examples/Makefile
config.status: creating vapi/Makefile
config.status: creating docs/Makefile
config.status: creating docs/libvirt-glib/Makefile
config.status: creating docs/libvirt-glib/version.xml
config.status: creating docs/libvirt-gobject/Makefile
config.status: creating docs/libvirt-gconfig/Makefile
config.status: creating po/Makefile.in
config.status: creating tests/Makefile
config.status: creating libvirt-glib-1.0.pc
config.status: creating libvirt-gconfig-1.0.pc
config.status: creating libvirt-gobject-1.0.pc
config.status: creating libvirt-glib.spec
config.status: creating mingw-libvirt-glib.spec
config.status: creating config.h
config.status: linking ../GNUmakefile to GNUmakefile
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po/stamp-it commands
Now type 'make' to compile libvirt-glib.
+ /usr/bin/gmake
/usr/bin/gmake all-recursive
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
Making all in libvirt-glib
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
CC libvirt_glib_1_0_la-libvirt-glib-error.lo
CC libvirt_glib_1_0_la-libvirt-glib-event.lo
CC libvirt_glib_1_0_la-libvirt-glib-main.lo
CCLD libvirt-glib-1.0.la
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
Making all in libvirt-gconfig
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
GEN libvirt-gconfig-enum-types.c
GEN libvirt-gconfig-enum-types.h
/usr/bin/gmake all-recursive
gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
Making all in .
gmake[4]: Entering directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
CC libvirt_gconfig_1_0_la-libvirt-gconfig-object.lo
CC libvirt_gconfig_1_0_la-libvirt-gconfig-main.lo
CC libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.lo
CC libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.lo
../../libvirt-gconfig/libvirt-gconfig-capabilities.c: In function 'gvir_config_capabilities_class_init':
../../libvirt-gconfig/libvirt-gconfig-capabilities.c:42:5: error: 'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
g_type_class_add_private(klass, sizeof(GVirConfigCapabilitiesPrivate));
^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gobject.h:24,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gbinding.h:29,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib-object.h:23,
from ../../libvirt-gconfig/libvirt-gconfig.h:26,
from ../../libvirt-gconfig/libvirt-gconfig-capabilities.c:26:
/usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
void g_type_class_add_private (gpointer g_class,
^~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
gmake[4]: *** [Makefile:1082: libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.lo] Error 1
gmake[4]: *** Waiting for unfinished jobs....
../../libvirt-gconfig/libvirt-gconfig-object.c: In function 'gvir_config_object_class_init':
../../libvirt-gconfig/libvirt-gconfig-object.c:179:5: error: 'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
g_type_class_add_private(klass, sizeof(GVirConfigObjectPrivate));
^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gobject.h:24,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gbinding.h:29,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib-object.h:23,
from ../../libvirt-gconfig/libvirt-gconfig.h:26,
from ../../libvirt-gconfig/libvirt-gconfig-object.c:31:
/usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
void g_type_class_add_private (gpointer g_class,
^~~~~~~~~~~~~~~~~~~~~~~~
../../libvirt-gconfig/libvirt-gconfig-object.c: In function 'gvir_config_object_set_node_content_uint64':
../../libvirt-gconfig/libvirt-gconfig-object.c:593:27: error: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'guint64' {aka 'long long unsigned int'} [-Werror=format=]
str = g_strdup_printf("%"G_GUINT64_FORMAT, value);
^~~ ~~~~~
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gtypes.h:32,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/galloca.h:32,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib.h:30,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gi18n-lib.h:21,
from ../../libvirt-gconfig/libvirt-gconfig-object.c:29:
/usr/i686-w64-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h:51:30: note: format string is defined here
#define G_GUINT64_FORMAT "I64u"
../../libvirt-gconfig/libvirt-gconfig-object.c: In function 'gvir_config_object_set_attribute_with_type':
../../libvirt-gconfig/libvirt-gconfig-object.c:842:39: error: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'guint64' {aka 'long long unsigned int'} [-Werror=format=]
str = g_strdup_printf("%"G_GUINT64_FORMAT, val);
^~~ ~~~
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gtypes.h:32,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/galloca.h:32,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib.h:30,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib/gi18n-lib.h:21,
from ../../libvirt-gconfig/libvirt-gconfig-object.c:29:
/usr/i686-w64-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h:51:30: note: format string is defined here
#define G_GUINT64_FORMAT "I64u"
cc1: all warnings being treated as errors
gmake[4]: *** [Makefile:1068: libvirt_gconfig_1_0_la-libvirt-gconfig-object.lo] Error 1
../../libvirt-gconfig/libvirt-gconfig-capabilities-host.c: In function 'gvir_config_capabilities_host_class_init':
../../libvirt-gconfig/libvirt-gconfig-capabilities-host.c:43:5: error: 'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
g_type_class_add_private(klass, sizeof(GVirConfigCapabilitiesHostPrivate));
^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gobject.h:24,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gbinding.h:29,
from /usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/glib-object.h:23,
from ../../libvirt-gconfig/libvirt-gconfig.h:26,
from ../../libvirt-gconfig/libvirt-gconfig-capabilities-host.c:27:
/usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
void g_type_class_add_private (gpointer g_class,
^~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
gmake[4]: *** [Makefile:1089: libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.lo] Error 1
gmake[4]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
gmake[3]: *** [Makefile:1752: all-recursive] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
gmake[2]: *** [Makefile:877: all] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
gmake[1]: *** [Makefile:559: all-recursive] Error 1
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-glib-master-build-mingw32/systems=libvi...'>
gmake: *** [Makefile:460: all] Error 2
Build step 'Execute shell' marked build as failure
6 years, 3 months
[Libvirt-ci] Build failed in Jenkins: libvirt-master-check » libvirt-debian-8 #1352
by ci@centos.org
See <https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/1...>
------------------------------------------
[...truncated 22.59 KB...]
PASS: test-close
PASS: test-connect
PASS: test-c-strcasestr
PASS: test-count-leading-zeros
PASS: test-ctype
PASS: test-count-one-bits
PASS: test-dup
PASS: test-environ
PASS: test-errno
PASS: test-dup2
PASS: test-fcntl-h
PASS: test-fclose
PASS: test-fcntl
PASS: test-fdatasync
PASS: test-fdopen
PASS: test-fflush
PASS: test-ffs
PASS: test-fflush2.sh
PASS: test-ffsl
PASS: test-float
PASS: test-fnmatch
PASS: test-fgetc
PASS: test-fread
PASS: test-fpurge
PASS: test-fputc
PASS: test-fseek.sh
PASS: test-freading
PASS: test-fseeko2.sh
PASS: test-fseek2.sh
PASS: test-fseeko.sh
PASS: test-fstat
PASS: test-fseeko3.sh
PASS: test-fseeko4.sh
PASS: test-ftell.sh
PASS: test-ftell2.sh
PASS: test-fsync
PASS: test-ftell3
PASS: test-ftello.sh
PASS: test-ftello3
PASS: test-ftello2.sh
PASS: test-ftello4.sh
PASS: test-ftruncate.sh
PASS: test-func
PASS: test-fwrite
PASS: test-getcwd-lgpl
PASS: test-getdelim
PASS: test-getdtablesize
PASS: test-gethostname
PASS: test-getgroups
PASS: test-getline
PASS: test-getpeername
PASS: test-getprogname
PASS: test-getopt-posix
PASS: test-getsockopt
PASS: test-getsockname
PASS: test-gettimeofday
PASS: test-ignore-value
PASS: test-grantpt
PASS: test-inet_ntop
PASS: test-inet_pton
PASS: test-inttypes
PASS: test-intprops
PASS: test-ioctl
PASS: test-isatty
PASS: test-isblank
PASS: test-isnand-nolibm
PASS: test-isnanf-nolibm
PASS: test-isnanl-nolibm
PASS: test-langinfo
PASS: test-limits-h
PASS: test-listen
PASS: test-ldexp
PASS: test-locale
PASS: test-localeconv
PASS: test-localename
PASS: test-lseek.sh
PASS: test-lstat
PASS: test-math
SKIP: test-mbrtowc1.sh
PASS: test-malloca
SKIP: test-mbrtowc2.sh
SKIP: test-mbrtowc3.sh
SKIP: test-mbrtowc4.sh
SKIP: test-mbrtowc-w32-1.sh
PASS: test-mbrtowc5.sh
SKIP: test-mbrtowc-w32-2.sh
SKIP: test-mbrtowc-w32-3.sh
SKIP: test-mbrtowc-w32-5.sh
SKIP: test-mbrtowc-w32-4.sh
SKIP: test-mbsinit.sh
SKIP: test-mbsrtowcs1.sh
SKIP: test-mbsrtowcs2.sh
SKIP: test-mbsrtowcs3.sh
SKIP: test-mbsrtowcs4.sh
PASS: test-getaddrinfo
PASS: test-net_if
PASS: test-netdb
PASS: test-netinet_in
PASS: test-nl_langinfo.sh
PASS: test-memchr
PASS: test-nanosleep
PASS: test-nonblocking
PASS: test-open
PASS: test-openpty
PASS: test-passfd
PASS: test-pathmax
PASS: test-perror.sh
PASS: test-perror2
PASS: test-pipe
PASS: test-pipe2
PASS: test-poll-h
PASS: test-poll
PASS: test-posix_openpt
PASS: test-posix_spawn_file_actions_addclose
PASS: test-posix_spawn_file_actions_adddup2
PASS: test-posix_spawn_file_actions_addopen
PASS: test-posix_spawn1
PASS: test-posix_spawn2
PASS: test-pthread_sigmask1
PASS: test-pthread_sigmask2
SKIP: test-ptsname
SKIP: test-ptsname_r
PASS: test-raise
PASS: test-nonblocking-pipe.sh
PASS: test-rawmemchr
PASS: test-read
PASS: test-recv
PASS: test-readlink
PASS: test-regex
PASS: test-sched
PASS: test-select
PASS: test-select-out.sh
PASS: test-send
PASS: test-setenv
SKIP: test-setlocale1.sh
PASS: test-setlocale2.sh
PASS: test-setsockopt
PASS: test-sigaction
PASS: test-signal-h
PASS: test-signbit
PASS: test-sigpipe.sh
PASS: test-select-in.sh
PASS: test-nonblocking-socket.sh
PASS: test-snprintf
PASS: test-sockets
PASS: test-spawn
PASS: test-stat
PASS: test-stat-time
PASS: test-stdalign
PASS: test-stdbool
PASS: test-stddef
PASS: test-stdint
PASS: test-stdio
PASS: test-stdlib
PASS: test-strchrnul
PASS: test-strerror
PASS: test-strerror_r
PASS: test-string
PASS: test-strings
PASS: test-strnlen
PASS: test-symlink
PASS: test-sys_ioctl
PASS: test-sys_select
PASS: test-sys_socket
PASS: test-sys_stat
PASS: test-sys_time
PASS: test-sys_types
PASS: test-sigprocmask
PASS: test-sys_uio
PASS: test-sys_utsname
PASS: test-sys_wait
PASS: test-termios
PASS: test-thread_self
PASS: test-thread_create
PASS: test-time
SKIP: test-ttyname_r
PASS: test-uname
PASS: test-unistd
PASS: test-uc_width
PASS: test-init.sh
PASS: test-unlockpt
PASS: test-unsetenv
PASS: uniwidth/test-uc_width2.sh
PASS: test-vasnprintf
PASS: test-vasprintf
PASS: test-sleep
SKIP: test-vc-list-files-cvs.sh
PASS: test-verify
PASS: test-vc-list-files-git.sh
PASS: test-vsnprintf
PASS: test-wchar
PASS: test-wcrtomb.sh
SKIP: test-wcrtomb-w32-1.sh
SKIP: test-wcrtomb-w32-2.sh
SKIP: test-wcrtomb-w32-3.sh
SKIP: test-wcrtomb-w32-4.sh
SKIP: test-wcrtomb-w32-5.sh
PASS: test-wctype-h
PASS: test-wcwidth
PASS: test-write
../../../build-aux/test-driver: line 107: 31821 Aborted "$@" > $log_file 2>&1
FAIL: test-usleep
PASS: test-xalloc-die.sh
PASS: test-verify.sh
make[6]: Entering directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
/usr/bin/make all-recursive
make[7]: Entering directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
Making all in .
make[8]: Entering directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
make[8]: Nothing to be done for 'all-am'.
make[8]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
make[7]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
make[6]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
============================================================================
Testsuite summary for libvirt 4.8.0
============================================================================
# TOTAL: 219
# PASS: 192
# SKIP: 26
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
See gnulib/tests/test-suite.log
Please report to libvir-list(a)redhat.com
============================================================================
Makefile:5060: recipe for target 'test-suite.log' failed
make[5]: *** [test-suite.log] Error 1
make[5]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
Makefile:5166: recipe for target 'check-TESTS' failed
make[4]: *** [check-TESTS] Error 2
make[4]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
Makefile:6790: recipe for target 'check-am' failed
make[3]: *** [check-am] Error 2
make[3]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
Makefile:4953: recipe for target 'check-recursive' failed
make[2]: *** [check-recursive] Error 1
make[2]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
Makefile:6793: recipe for target 'check' failed
make[1]: *** [check] Error 2
make[1]: Leaving directory '<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-debian-8/w...'>
Makefile:2100: recipe for target 'check-recursive' failed
make: *** [check-recursive] Error 1
+ cat tests/test-suite.log
cat: tests/test-suite.log: No such file or directory
+ true
+ exit 1
Build step 'Execute shell' marked build as failure
6 years, 3 months
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-master-check » libvirt-fedora-27 #375
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...>
------------------------------------------
Started by upstream project "libvirt-dbus-master-check" build number 375
originally caused by:
Started by upstream project "libvirt-dbus-master-syntax-check" build number 38
originally caused by:
Started by upstream project "libvirt-dbus-master-build" build number 410
originally caused by:
Started by upstream project "libvirt-glib-master-build" build number 1382
originally caused by:
Started by upstream project "libvirt-master-build" build number 1726
originally caused by:
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-27 (libvirt) in workspace <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...>
[libvirt-dbus-master] $ /bin/sh -xe /tmp/jenkins2218808496410781051.sh
+ cd build
+ /usr/bin/gmake check
Making check in data
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
Making check in docs
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
Making check in src
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: Nothing to be done for 'check'.
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
Making check in tests
gmake[1]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
/usr/bin/gmake test_util
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
CC test_util-test_util.o
CCLD test_util
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
/usr/bin/gmake check-TESTS
gmake[2]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[3]: Entering directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
PASS: test_util
PASS: test_interface.py
PASS: test_domain.py
PASS: test_network.py
PASS: test_nodedev.py
FAIL: test_connect.py
PASS: test_storage.py
============================================================================
Testsuite summary for libvirt-dbus 1.3.0
============================================================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
See tests/test-suite.log
Please report to libvir-list(a)redhat.com
============================================================================
gmake[3]: *** [Makefile:759: test-suite.log] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[2]: *** [Makefile:867: check-TESTS] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: *** [Makefile:980: check-am] Error 2
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake: *** [Makefile:460: check-recursive] Error 1
+ cat tests/test-suite.log
==============================================
libvirt-dbus 1.3.0: tests/test-suite.log
==============================================
# TOTAL: 7
# PASS: 6
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test_connect.py
=====================
============================= test session starts ==============================
platform linux -- Python 3.6.6, pytest-3.2.3, py-1.4.34, pluggy-0.4.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...,> inifile:
collected 35 items
../../tests/test_connect.py ..................E...............E
==================================== ERRORS ====================================
________ ERROR at setup of TestConnect.test_connect_get_cpu_model_names ________
self = <test_connect.TestConnect object at 0x7f90b3ac6748>
request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_connect_get_cpu_model_names'>>
@pytest.fixture(autouse=True)
def libvirt_dbus_setup(self, request):
"""Start libvirt-dbus for each test function
"""
os.environ['LIBVIRT_DEBUG'] = '3'
self.libvirt_dbus = subprocess.Popen([exe, '--session'])
self.bus = dbus.SessionBus()
for i in range(10):
if self.bus.name_has_owner('org.libvirt'):
break
time.sleep(0.1)
else:
> raise TimeoutError('error starting libvirt-dbus')
E TimeoutError: error starting libvirt-dbus
../../tests/libvirttest.py:44: TimeoutError
ERROR at setup of TestConnect.test_connect_storage_vol_lookup_by_property[StorageVolLookupByPath-Path]
self = <test_connect.TestConnect object at 0x7f90b3f37550>
@pytest.fixture
def storage_volume_create(self):
""" Fixture to create dummy storage volume on the test driver
This fixture should be used in the setup of every test manipulating
with test volume.
"""
_, test_storage_pool = self.get_test_storage_pool()
interface_obj = dbus.Interface(test_storage_pool,
'org.libvirt.StoragePool')
> path = interface_obj.StorageVolCreateXML(xmldata.minimal_storage_vol_xml, 0)
../../tests/libvirttest.py:122:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f90b3f40990>
bus_name = dbus.String(':1.19')
object_path = dbus.ObjectPath('/org/libvirt/Test/storagepool/_dfe224cb_28fb_8dd0_c4b2_64eb3f0f4566')
dbus_interface = 'org.libvirt.StoragePool', method = 'StorageVolCreateXML'
signature = 'su'
args = ('\n<volume>\n <name>sparse.img</name>\n <capacity unit="G">2</capacity>\n <target>\n <path>/var/lib/virt/images/sparse.img</path>\n </target>\n</volume>\n', 0)
timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/storagepool/_dfe224cb_28fb_8dd0_c4b2_64eb3f0f4566, iface: org.libvirt.StoragePool, member: StorageVolCreateXML dest: :1.19>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: operation failed: storage vol already exists
/usr/lib64/python3.6/site-packages/dbus/connection.py:651: DBusException
===================== 33 passed, 2 error in 17.40 seconds ======================
FAIL test_connect.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
6 years, 3 months