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 -----
  • September
  • August
  • July
  • 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
  • 10212 discussions
[Libvirt-ci] Errored: libvirt/libvirt#1005 (master - 33c6eb9)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1005 Status: Errored Duration: 18 minutes and 44 seconds Commit: 33c6eb9 (master) Author: Jim Fehlig Message: libvirtd: fix potential deadlock when reloading It is possible to deadlock libvirtd when concurrently starting a domain and restarting the daemon. Threads involved in the deadlock are Thread 4 (Thread 0x7fc13b53e700 (LWP 64084)): /lib64/libpthread.so.0 at util/virthread.c:154 at qemu/qemu_monitor.c:1083 cmd=0x7fc110017700, scm_fd=-1, reply=0x7fc13b53d318) at qemu/qemu_monitor_json.c:305 cmd=0x7fc110017700, reply=0x7fc13b53d318) at qemu/qemu_monitor_json.c:335 at qemu/qemu_monitor_json.c:1298 at qemu/qemu_monitor.c:1697 vm=0x7fc110003d00, asyncJob=QEMU_ASYNC_JOB_START) at qemu/qemu_process.c:1763 vm=0x7fc110003d00, asyncJob=6, logCtxt=0x7fc1100089c0) at qemu/qemu_process.c:1835 vm=0x7fc110003d00, asyncJob=6, logCtxt=0x7fc1100089c0) at qemu/qemu_process.c:2180 driver=0x7fc12004e1e0, vm=0x7fc110003d00, asyncJob=QEMU_ASYNC_JOB_START, incoming=0x0, snapshot=0x0, vmop=VIR_NETDEV_VPORT_PROFILE_OP_CREATE, flags=17) at qemu/qemu_process.c:6111 driver=0x7fc12004e1e0, vm=0x7fc110003d00, updatedCPU=0x0, asyncJob=QEMU_ASYNC_JOB_START, migrateFrom=0x0, migrateFd=-1, migratePath=0x0, snapshot=0x0, vmop=VIR_NETDEV_VPORT_PROFILE_OP_CREATE, flags=17) at qemu/qemu_process.c:6334 xml=0x7fc110000ed0 "<!--\nWARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE\nOVERWRITTEN AND LOST. Changes to this xml configuration should be made using:\n virsh edit testvv\nor other applicati"..., flags=0) at qemu/qemu_driver.c:1776 ... Thread 1 (Thread 0x7fc143c66880 (LWP 64081)): /lib64/libpthread.so.0 at util/virthread.c:122 conf/nwfilter_conf.c:159 sig=0x7ffe0a831e30, opaque=0x0) at remote/remote_daemon.c:724 opaque=0x558c5328b230) at rpc/virnetdaemon.c:654 at util/vireventpoll.c:508 rpc/virnetdaemon.c:858 remote/remote_daemon.c:1496 (gdb) thr 1 [Switching to thread 1 (Thread 0x7fc143c66880 (LWP 64081))] /lib64/libpthread.so.0 (gdb) f 1 at util/virthread.c:122 122 pthread_rwlock_wrlock(&m->lock); (gdb) p updateLock $1 = {lock = {__data = {__lock = 0, __nr_readers = 1, __readers_wakeup = 0, __writer_wakeup = 0, __nr_readers_queued = 0, __nr_writers_queued = 1, __writer = 0, __shared = 0, __rwelision = 0 '\000', __pad1 = "\000\000\000\000\000\000", __pad2 = 0, __flags = 0}, __size = "\000\000\000\000\001", '\000' <repeats 15 times>, "\001", '\000' <repeats 34 times>, __align = 4294967296}} Reloading of the nwfilter driver is stuck waiting for a write lock, which already has a reader (from qemuDomainCreateXML) in the critical section. Since the reload occurs in the context of the main event loop thread, libvirtd becomes deadlocked. The deadlock can be avoided by offloading the reload work to a thread. Signed-off-by: Jim Fehlig <jfehlig(a)suse.com> Reviewed-by: Daniel P. Berrangé <berrange(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/de3fe191f5ea...33c6eb9689eb View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352430192?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=811b3e43ed1a40768…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#1004 (master - de3fe19)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1004 Status: Errored Duration: 18 minutes and 21 seconds Commit: de3fe19 (master) Author: Roman Bogorodskiy Message: bhyve: fix crash on missing interface model The bhyve driver crashes in bhyveBuildNetArgStr() when network interface model is not defined. As it has to be provided explicitly, add a check to report an error if it's missing. Signed-off-by: Roman Bogorodskiy <bogorodskiy(a)gmail.com> Reviewed-by: Michal Privoznik <mprivozn(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/ea9b0e580a9f...de3fe191f5ea View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352415379?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=d070d1c6eb8a458b9…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#1003 (master - ea9b0e5)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1003 Status: Errored Duration: 21 minutes and 39 seconds Commit: ea9b0e5 (master) Author: Andrea Bolognani Message: keycodemapdb: Update submodule This time around it's not enough to just pick the latest commit, because with aed87bb2aa6ed83b49574eb982e3bdd4c36acf17 keycodemapdb renamed the 'rfb' keycode to 'qnum' and we need to accept the new name while maintaining backwards compatibility. Signed-off-by: Andrea Bolognani <abologna(a)redhat.com> Reviewed-by: Daniel P. Berrangé <berrange(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/d45bee449c52...ea9b0e580a9f View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352399846?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=0e0f565bbc6344b48…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#1002 (master - d45bee4)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1002 Status: Errored Duration: 25 minutes and 31 seconds Commit: d45bee4 (master) Author: John Ferlan Message: tools: Add support for additional adapter parent options Add the ability to provide the adapter parent_wwnn and parent_wwpn or the parent_fabric_wwn on the virsh command line for the pool define/create as commands. Update the virsh.pod description. Signed-off-by: John Ferlan <jferlan(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/e43263601fe2...d45bee449c52 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352326493?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=6319a6e4f12c4c56b…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#1001 (master - e432636)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1001 Status: Errored Duration: 19 minutes and 15 seconds Commit: e432636 (master) Author: Michal Privoznik Message: conf: Check for user aliases duplicates only https://bugzilla.redhat.com/show_bug.cgi?id=1553162 When validating a device XML config we check if user provided alias is unique. We do this by maintaining a hash table of device aliases as we iterated over all devices defined for the domain. However, it may happen that what appears as two devices in domain XML is in fact just one interface in hypervisor. We can assume libvirt generated aliases to be unique and thus really check user provided ones only. Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/fc0f85631521...e43263601fe2 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352307899?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=f4c2ceab4bc04984b…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#1000 (master - fc0f856)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1000 Status: Errored Duration: 19 minutes and 55 seconds Commit: fc0f856 (master) Author: Daniel P. Berrangé Message: Update to latest gnulib GnuLib has now fixed the incompatibility with latest GLibC that was affecting builds on Fedora rawhide. We can thus update and drop our local workaround. Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/dff3fab47faa...fc0f85631521 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352286555?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=9248b5cd641841ae8…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#999 (master - dff3fab)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #999 Status: Errored Duration: 19 minutes and 18 seconds Commit: dff3fab (master) Author: Julio Faracco Message: qemu: different declarations for the same method Recently, this warning is appearing while libvirt is being compiled: Function 'qemuAssignDeviceDiskAlias' argument order different: declaration 'vmdef, def' definition 'def, disk' This commit change the default declaration for qemuAssignDeviceDiskAlias specified at src/qemu/qemu_alias.c. Signed-off-by: Julio Faracco <jcfaracco(a)gmail.com> Reviewed-by: Andrea Bolognani <abologna(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/bf1b24514baa...dff3fab47faa View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352258203?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=a5b8f73082e54c989…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#998 (master - bf1b245)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #998 Status: Errored Duration: 21 minutes and 11 seconds Commit: bf1b245 (master) Author: Michal Privoznik Message: libvirt:spec: Require gcc for build According to latest discussion on fedora devel list [1] gcc will be removed from default buildroot and packages requiring it must have explicit build dependency, 1: https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedorapr… Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com> Reviewed-by: Pavel Hrdina <phrdina(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/2ccfbaa356ec...bf1b24514baa View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352247323?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=0dba9f9289df42d99…)
1 0
0 0
[Libvirt-ci] Errored: libvirt/libvirt#997 (master - 2ccfbaa)
by Travis CI 12 Mar '18

12 Mar '18
Build Update for libvirt/libvirt ------------------------------------- Build: #997 Status: Errored Duration: 19 minutes and 20 seconds Commit: 2ccfbaa (master) Author: Peter Krempa Message: qemu: Add qemu functions for storage source private data handling The qemu driver registered the helpers from util code, but it will be necessary to format also some qemu-specific data. Signed-off-by: Peter Krempa <pkrempa(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/b9b9195f15c9...2ccfbaa356ec View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/352242474?utm_source=email&utm… -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications This email was sent to libvirt-ci(a)redhat.com (mailto:libvirt-ci@redhat.com) unsubscribe from this list (http://clicks.travis-ci.com/track/unsub.php?u=14313403&id=47d88eb10024403e9…)
1 0
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-master-check » libvirt-freebsd-11 #105
by ci@centos.org 11 Mar '18

11 Mar '18
See <https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…> ------------------------------------------ Started by upstream project "libosinfo-master-check" build number 105 originally caused by: Started by upstream project "libosinfo-master-syntax-check" build number 108 originally caused by: Started by upstream project "libosinfo-master-build" build number 126 originally caused by: Started by upstream project "osinfo-db-master-build" build number 233 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-freebsd-11 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…> [libosinfo-master] $ /bin/sh -xe /tmp/jenkins4153089226821329483.sh + MAKE=make + uname + unamestr=FreeBSD + [ FreeBSD '=' FreeBSD ] + MAKE=gmake + export 'PATH=/home/jenkins/build/libvirt/bin:/home/jenkins/build/libvirt/bin:/home/jenkins/build/libvirt/bin:/home/jenkins/build/libvirt/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/jenkins/bin' + export 'OSINFO_SYSTEM_DIR=/home/jenkins/build/libvirt/share/osinfo' + cd build + gmake -j3 check Making check in osinfo GEN public-submodule-commit gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake check-am gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake check-local gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> GEN check-symsorting gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> Making check in tools gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> Making check in docs gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> Making check in reference gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[2]: Nothing to be done for 'check-am'. gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> Making check in po gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> INTLTOOL_EXTRACT="/usr/local/bin/intltool-extract" XGETTEXT="/usr/local/bin/xgettext" srcdir=../../po /usr/local/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/local/bin/intltool-update -m Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ?PACKAGE_NAME}?/ at /usr/local/bin/intltool-update line 1071, <CONF> line 295. if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> Making check in examples gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> Making check in tests gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake test-entity test-device test-list test-devicelist test-filter test-product test-os test-oslist test-productfilter test-platform test-platformlist test-db test-loader test-isodetect test-install-script test-mediauris test-treeuris gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> CC test_entity-test-entity.o CC test_device-test-device.o CC test_list-test-list.o CC test_devicelist-test-devicelist.o CC test_filter-test-filter.o CC test_product-test-product.o CC test_os-test-os.o CC test_oslist-test-oslist.o CC test_productfilter-test-productfilter.o CC test_platform-test-platform.o CC test_platformlist-test-platformlist.o CC test_db-test-db.o CC test_loader-test-loader.o CC test_isodetect-test-isodetect.o CC test_install_script-test-install-script.o CC test_mediauris-test-mediauris.o CC test_treeuris-test-treeuris.o CCLD test-entity CCLD test-device CCLD test-list CCLD test-devicelist CCLD test-filter CCLD test-product CCLD test-os CCLD test-oslist CCLD test-productfilter CCLD test-platform CCLD test-platformlist CCLD test-db CCLD test-loader CCLD test-isodetect CCLD test-install-script CCLD test-mediauris CCLD test-treeuris gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake check-TESTS gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> PASS: test-entity PASS: test-device PASS: test-list PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-os PASS: test-productfilter PASS: test-oslist PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-install-script SKIP: test-mediauris SKIP: test-treeuris PASS: test-loader Abort trap (core dumped) FAIL: test-isodetect ============================================================================ Testsuite summary for libosinfo 1.2.0 ============================================================================ # TOTAL: 17 # PASS: 14 # SKIP: 2 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See tests/test-suite.log Please report to libosinfo(a)redhat.com ============================================================================ gmake[3]: *** [Makefile:1257: test-suite.log] Error 1 gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[2]: *** [Makefile:1365: check-TESTS] Error 2 gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake[1]: *** [Makefile:1548: check-am] Error 2 gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-11…'> gmake: *** [Makefile:594: check-recursive] Error 1 + cat tests/test-suite.log =========================================== libosinfo 1.2.0: tests/test-suite.log =========================================== # TOTAL: 17 # PASS: 14 # SKIP: 2 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: test-isodetect ==================== /isodetect/freedos: OK /isodetect/windows: OK /isodetect/ubuntu: OK /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: ** ERROR:../../tests/test-isodetect.c:406:test_one: assertion failed (shortid == info->shortid): ("rhel-atomic-7.0" == "rhel-atomic-7.1") FAIL test-isodetect (exit status: 134) SKIP: test-mediauris ==================== SKIP test-mediauris (exit status: 77) SKIP: test-treeuris =================== SKIP test-treeuris (exit status: 77) + exit 1 Build step 'Execute shell' marked build as failure
1 3
0 0
  • ← Newer
  • 1
  • ...
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • ...
  • 1022
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.