[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-master-check » libvirt-fedora-28 #306
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 306
originally caused by:
Started by upstream project "libvirt-dbus-master-build" build number 340
originally caused by:
Started by upstream project "libvirt-glib-master-build" build number 1300
originally caused by:
Started by upstream project "libvirt-master-build" build number 1629
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-28 (libvirt) in workspace <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...>
[libvirt-dbus-master] $ /bin/sh -xe /tmp/jenkins8590031916593610937.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:758: test-suite.log] Error 1
gmake[3]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[2]: *** [Makefile:866: check-TESTS] Error 2
gmake[2]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake[1]: *** [Makefile:979: check-am] Error 2
gmake[1]: Leaving directory '<https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...'>
gmake: *** [Makefile:459: 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.4.2, py-1.5.4, pluggy-0.6.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-master-check/systems=libvirt-fedor...,> inifile:
collected 35 items
../../tests/test_connect.py ....................E.............E [100%]
==================================== ERRORS ====================================
________ ERROR at setup of TestConnect.test_connect_network_create_xml _________
self = <test_connect.TestConnect object at 0x7fa1543977f0>
request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_connect_network_create_xml'>>
@pytest.fixture(autouse=True)
def libvirt_dbus_setup(self, request):
"""Start libvirt-dbus for each test function
"""
os.environ['LIBVIRT_DEBUG'] = '3'
self.libvirt_dbus = subprocess.Popen([exe, '--session'])
self.bus = dbus.SessionBus()
for i in range(10):
if self.bus.name_has_owner('org.libvirt'):
break
time.sleep(0.1)
else:
> raise TimeoutError('error starting libvirt-dbus')
E TimeoutError: error starting libvirt-dbus
../../tests/libvirttest.py:44: TimeoutError
ERROR at setup of TestConnect.test_connect_storage_vol_lookup_by_property[StorageVolLookupByPath-Path]
self = <test_connect.TestConnect object at 0x7fa1542e39b0>
@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:106:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/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 0x7fa1547dfba0>
bus_name = dbus.String(':1.21')
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.21>
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 15.69 seconds ======================
FAIL test_connect.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
6 years, 5 months
[Libvirt-ci] Build failed in Jenkins: libvirt-go-master-build » libvirt-fedora-rawhide #1224
by ci@centos.org
See <https://ci.centos.org/job/libvirt-go-master-build/systems=libvirt-fedora-...>
Changes:
[berrange] error: add helper for converting libvirt to go error objects
[berrange] storage volume: add missin blank line
[berrange] Rename *cfuncs.{go,h} to *wrapper.{go,h}
[berrange] Use "Wrapper" or "Helper" as suffix for C functions
[berrange] Change "Compat" suffix to "Wrapper" to have standard naming scheme
[berrange] connect: move wrapper functions out of compat header
[berrange] network: move wrapper functions out of compat header
[berrange] nwfilter binding: move wrapper functions out of compat header
[berrange] node device: move wrapper functions out of compat header
[berrange] secret: move wrapper functions out of compat header
[berrange] stream: move wrapper functions out of compat header
[berrange] storage volume: move wrapper functions out of compat header
[berrange] storage pool: move wrapper functions out of compat header
[berrange] qemu: move wrapper functions out of compat header
[berrange] lxc: move wrapper functions out of compat header
[berrange] domain: move wrapper functions out of compat header
[berrange] make the XXX_wrapper.h header files self-contained
[berrange] Add XXX_wrapper.{h,go} for every remaining file
[berrange] Standardize formatting in all wrapper headers
[berrange] storage vol: fix error reporting thread safety
[berrange] storage pool: fix error reporting thread safety
[berrange] stream: fix error reporting thread safety
[berrange] secret: fix error reporting thread safety
[berrange] nwfilter: fix error reporting thread safety
[berrange] nwfilter binding: fix error reporting thread safety
[berrange] node device: fix error reporting thread safety
[berrange] network: fix error reporting thread safety
[berrange] interface: fix error reporting thread safety
[berrange] domain snapshot: fix error reporting thread safety
[berrange] connect: fix error reporting thread safety
[berrange] domain: fix error reporting thread safety
[berrange] qemu: fix error reporting thread safety
[berrange] lxc: fix error reporting thread safety
[berrange] events: fix error reporting thread safety
[berrange] error: remove GetLastError() function
[berrange] error: make GetNotImplementedError private
[berrange] connect: add missing references on domain object in stats records
------------------------------------------
Started by upstream project "libvirt-go-master-build" build number 1224
originally caused by:
Started by upstream project "libvirt-master-build" build number 1623
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-master-build/systems=libvirt-fedora-...>
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://github.com/libvirt/libvirt-go.git # timeout=10
Fetching upstream changes from https://github.com/libvirt/libvirt-go.git
> git --version # timeout=10
> git fetch --tags --progress https://github.com/libvirt/libvirt-go.git +refs/heads/*:refs/remotes/origin/*
Checking out Revision 2c9281d85d6de9b8f699c17aceee00e4419b9cc8 (refs/remotes/origin/master)
> git config core.sparsecheckout # timeout=10
> git checkout -f 2c9281d85d6de9b8f699c17aceee00e4419b9cc8
Commit message: "connect: add missing references on domain object in stats records"
> git rev-list --no-walk 39588eb9680a3a38a7f377e7d5907115a1935e6d # timeout=10
Cleaning workspace
> git rev-parse --verify HEAD # timeout=10
Resetting working tree
> git reset --hard # timeout=10
> git clean -fdx # timeout=10
[libvirt-go-master] $ /bin/sh -xe /tmp/jenkins1343396846164374629.sh
+ go build -v
_<https://ci.centos.org/job/libvirt-go-master-build/systems=libvirt-fedora-...>
# _<https://ci.centos.org/job/libvirt-go-master-build/systems=libvirt-fedora-...>
inconsistent definitions for C.uint
Build step 'Execute shell' marked build as failure
6 years, 5 months
[Libvirt-ci] Build failed in Jenkins: libvirt-master-check » libvirt-freebsd-10 #1266
by ci@centos.org
See <https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...>
------------------------------------------
[...truncated 47.00 KB...]
gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
Making check in tests
gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
/usr/local/bin/gmake
gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
gmake[2]: Nothing to be done for 'all'.
gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
/usr/local/bin/gmake check-TESTS
gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
PASS: sockettest
SKIP: virhostcputest
PASS: virbuftest
PASS: seclabeltest
PASS: virhashtest
PASS: virconftest
PASS: commandtest
PASS: utiltest
SKIP: shunloadtest
PASS: virtimetest
PASS: viruritest
PASS: virkeyfiletest
PASS: viralloctest
PASS: virauthconfigtest
PASS: virbitmaptest
PASS: viratomictest
SKIP: vircgrouptest
SKIP: virpcitest
PASS: vircryptotest
PASS: virendiantest
PASS: virfiletest
SKIP: virfirewalltest
PASS: virfilecachetest
FAIL: viriscsitest
PASS: virkeycodetest
PASS: virlockspacetest
PASS: virlogtest
PASS: virrotatingfiletest
PASS: virstringtest
SKIP: virportallocatortest
PASS: sysinfotest
SKIP: virkmodtest
PASS: vircapstest
PASS: domaincapstest
PASS: domainconftest
SKIP: virhostdevtest
SKIP: virnetdevtest
PASS: virtypedparamtest
PASS: virnetmessagetest
PASS: virnetsockettest
PASS: virnetdaemontest
PASS: virnetserverclienttest
SKIP: virnettlscontexttest
SKIP: virnettlssessiontest
PASS: fdstreamtest
PASS: virdbustest
SKIP: virsystemdtest
PASS: virpolkittest
PASS: qemuxml2argvtest
PASS: qemuxml2xmltest
PASS: qemuargv2xmltest
PASS: domainsnapshotxml2xmltest
PASS: qemumonitorjsontest
PASS: virschematest
PASS: qemuagenttest
PASS: qemuhotplugtest
PASS: qemucaps2xmltest
PASS: qemumemlocktest
PASS: qemucommandutiltest
PASS: qemucapabilitiestest
PASS: qemublocktest
PASS: esxutilstest
PASS: vboxsnapshotxmltest
PASS: qemumigparamstest
PASS: vmx2xmltest
PASS: xml2vmxtest
PASS: vmwarevertest
PASS: bhyvexml2xmltest
PASS: bhyvexml2argvtest
PASS: bhyveargv2xmltest
PASS: networkxml2xmltest
PASS: virjsontest
PASS: networkxml2xmlupdatetest
PASS: networkxml2conftest
SKIP: networkxml2firewalltest
PASS: virnwfilterbindingxml2xmltest
PASS: nwfilterxml2xmltest
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: 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: cputest
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.6.0
============================================================================
# TOTAL: 109
# PASS: 94
# 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:5818: test-suite.log] Error 1
gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
gmake[2]: *** [Makefile:5926: check-TESTS] Error 2
gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
gmake[1]: *** [Makefile:6924: check-am] Error 2
gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-10...'>
gmake: *** [Makefile:2106: check-recursive] Error 1
+ cat tests/test-suite.log
=========================================
libvirt 4.6.0: tests/test-suite.log
=========================================
# TOTAL: 109
# PASS: 94
# 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)
FAIL: viriscsitest
==================
TEST: viriscsitest
1) ISCSI get session testiqn.2004-06.example:example1:iscsi.test ... OK
2) ISCSI get (non-flash) session testiqn.2004-06.example:example1:iscsi.test ... OK
3) ISCSI get session testiqn.2009-04.example:example1:iscsi.seven ... OK
4) ISCSI get (non-flash) session testiqn.2009-04.example:example1:iscsi.seven ... OK
5) ISCSI get session testiqn.2009-04.example:example1:iscsi.eight ... OK
6) ISCSI get (non-flash) session testiqn.2009-04.example:example1:iscsi.eight ... OK
7) ISCSI scan targets ... OK
8) ISCSI login 10.20.30.40:3260,1 ... OK
9) ISCSI login 10.20.30.40:3260,1 ... libvirt: error : internal error: malformed output of iscsiadm: default tcp,<empty>,<empty>,<empty>,<empty>
FAILED
FAIL viriscsitest (exit status: 1)
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)
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, 5 months
[Libvirt-ci] Build failed in Jenkins: libvirt-master-check » libvirt-freebsd-11 #1266
by ci@centos.org
See <https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...>
------------------------------------------
[...truncated 23.17 KB...]
gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
Making check in tests
gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
/usr/local/bin/gmake
gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake[2]: Nothing to be done for 'all'.
gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
/usr/local/bin/gmake check-TESTS
gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
PASS: sockettest
PASS: virbuftest
SKIP: virhostcputest
PASS: seclabeltest
PASS: virhashtest
PASS: virconftest
PASS: commandtest
PASS: utiltest
SKIP: shunloadtest
PASS: virtimetest
PASS: viruritest
PASS: virkeyfiletest
PASS: viralloctest
PASS: virauthconfigtest
PASS: virbitmaptest
SKIP: vircgrouptest
PASS: vircryptotest
SKIP: virpcitest
PASS: virendiantest
PASS: virfiletest
PASS: virfilecachetest
SKIP: virfirewalltest
FAIL: viriscsitest
PASS: virkeycodetest
PASS: virlockspacetest
PASS: viratomictest
PASS: virlogtest
PASS: virrotatingfiletest
PASS: virstringtest
SKIP: virportallocatortest
PASS: sysinfotest
SKIP: virkmodtest
PASS: vircapstest
PASS: domaincapstest
PASS: domainconftest
SKIP: virhostdevtest
SKIP: virnetdevtest
PASS: virtypedparamtest
PASS: virnetmessagetest
PASS: virnetsockettest
PASS: virnetdaemontest
PASS: virnetserverclienttest
SKIP: virnettlscontexttest
SKIP: virnettlssessiontest
PASS: fdstreamtest
PASS: virdbustest
SKIP: virsystemdtest
PASS: virpolkittest
PASS: qemuxml2argvtest
PASS: qemuxml2xmltest
PASS: qemuargv2xmltest
PASS: domainsnapshotxml2xmltest
PASS: qemumonitorjsontest
PASS: virschematest
PASS: qemuagenttest
PASS: qemuhotplugtest
PASS: qemucaps2xmltest
PASS: qemumemlocktest
PASS: qemucommandutiltest
PASS: qemublocktest
PASS: qemumigparamstest
PASS: esxutilstest
PASS: qemucapabilitiestest
PASS: vboxsnapshotxmltest
PASS: vmx2xmltest
PASS: vmwarevertest
PASS: xml2vmxtest
PASS: bhyvexml2xmltest
PASS: bhyvexml2argvtest
PASS: virjsontest
PASS: networkxml2xmltest
PASS: bhyveargv2xmltest
PASS: networkxml2conftest
PASS: networkxml2xmlupdatetest
SKIP: networkxml2firewalltest
PASS: virnwfilterbindingxml2xmltest
PASS: storagevolxml2argvtest
PASS: nwfilterxml2xmltest
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: 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: cputest
PASS: virsh-start
PASS: virt-admin-self-test
PASS: virsh-undefine
PASS: virsh-uriprecedence
PASS: virsh-vcpupin
PASS: virshtest
============================================================================
Testsuite summary for libvirt 4.6.0
============================================================================
# TOTAL: 109
# PASS: 94
# 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:5818: 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:5926: check-TESTS] Error 2
gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake[1]: *** [Makefile:6924: check-am] Error 2
gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libvirt-master-check/systems=libvirt-freebsd-11...'>
gmake: *** [Makefile:2106: check-recursive] Error 1
+ cat tests/test-suite.log
=========================================
libvirt 4.6.0: tests/test-suite.log
=========================================
# TOTAL: 109
# PASS: 94
# 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)
FAIL: viriscsitest
==================
TEST: viriscsitest
1) ISCSI get session testiqn.2004-06.example:example1:iscsi.test ... OK
2) ISCSI get (non-flash) session testiqn.2004-06.example:example1:iscsi.test ... OK
3) ISCSI get session testiqn.2009-04.example:example1:iscsi.seven ... OK
4) ISCSI get (non-flash) session testiqn.2009-04.example:example1:iscsi.seven ... OK
5) ISCSI get session testiqn.2009-04.example:example1:iscsi.eight ... OK
6) ISCSI get (non-flash) session testiqn.2009-04.example:example1:iscsi.eight ... OK
7) ISCSI scan targets ... OK
8) ISCSI login 10.20.30.40:3260,1 ... OK
9) ISCSI login 10.20.30.40:3260,1 ... libvirt: error : internal error: malformed output of iscsiadm: default tcp,<empty>,<empty>,<empty>,<empty>
FAILED
FAIL viriscsitest (exit status: 1)
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)
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, 5 months