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 -----
  • 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
  • 9404 discussions
[Libvirt-ci] Errored: libvirt/libvirt#1186 (v3.7-maint - aa68d0d)
by Travis CI 28 Apr '18

28 Apr '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1186 Status: Errored Duration: 11 mins and 34 secs Commit: aa68d0d (v3.7-maint) Author: Laine Stump Message: nwfilter: increase pcap buffer size to be compatible with TPACKET_V3 When an nwfilter rule sets the parameter CTRL_IP_LEARNING to "dhcp", this turns on the "dhcpsnoop" thread, which uses libpcap to monitor traffic on the domain's tap device and extract the IP address from the DHCP response. If libpcap on the host is built with HAVE_TPACKET3 defined (to enable support for TPACKET_V3), the dhcpsnoop code's initialization of the libpcap socket would fail with the following error: virNWFilterSnoopDHCPOpen:1134 : internal error: pcap_setfilter: can't remove kernel filter: Bad file descriptor It turns out that this was because TPACKET_V3 requires a larger buffer size than libvirt was setting (we were setting it to 128k). Changing the buffer size to 256k eliminates the error, and the dhcpsnoop thread once again works properly. A fuller explanation of why TPACKET_V3 requires such a large buffer, for future git spelunkers: libpcap calls setsockopt(... SOL_PACKET, PACKET_RX_RING...) to setup a ring buffer for receiving packets; two of the attributes sent to this API are called tp_frame_size, and tp_frame_nr. If libpcap was built with HAVE_TPACKET3 defined, tp_trame_size is set to MAXIMUM_SNAPLEN (defined in libpcap sources as 262144) and tp_frame_nr is set to: [the buffer size we set, i.e. PCAP_BUFFERSIZE i.e. 262144] / tp_frame_size. So if PCAP_BUFFERSIZE < MAXIMUM_SNAPLEN, then tp_frame_nr (the number of frames in the ring buffer) is 0, which is nonsensical. This same value is later used as a multiplier to determine the size for a call to malloc() (which would also fail). (NB: if HAVE_TPACKET3 is *not* defined, then tp_frame_size is set to the snaplen set by the user (in our case 576) plus a small amount to account for ethernet headers, so 256k is far more than adequate) Since the TPACKET_V3 code in libpcap actually reads multiple packets into each frame, it's not a problem to have only a single frame (especially when we are monitoring such infrequent traffic), so it's okay to set this relatively small buffer size (in comparison to the default, which is 2MB), which is important since every guest using dhcp snooping in a nwfilter rule will hold 2 of these buffers for the entire life of the guest. Thanks to Christian Ehrhardt for discovering that buffer size was the problem (this was not at all obvious from the error that was logged!) Resolves: https://bugzilla.redhat.com/1547237 Fixes: https://bugs.launchpad.net/libvirt/+bug/1758037 Signed-off-by: Laine Stump <laine(a)laine.org> Reviewed-by: Christian Ehrhardt <christian.ehrhardt(a)canonical.com> (V1) Reviewed-by: John Ferlan <jferlan(a)redhat.com> Tested-by: Christian Ehrhardt <christian.ehrhardt(a)canonical.com> (cherry picked from commit ce5aebeacd10a1c15cb3ee46a59c8b5ff235589e) View the changeset: https://github.com/libvirt/libvirt/compare/5a81acc80fc7...aa68d0db2cc7 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/372235674?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=51db8e427fdb4a648…)
1 0
0 0
[Libvirt-ci] Passed: libvirt/libvirt#1182 (v4.3.0-rc1 - 00b5029)
by Travis CI 26 Apr '18

26 Apr '18
Build Update for libvirt/libvirt ------------------------------------- Build: #1182 Status: Passed Duration: 18 mins and 53 secs Commit: 00b5029 (v4.3.0-rc1) Author: Ján Tomko Message: syntax-check: pass srcdir to group-qemu-caps.pl The script assumed to be run in the source directory. Pass top_srcdir as the argument to fix VPATH builds. My commit 81a7571 broke this. Signed-off-by: Ján Tomko <jtomko(a)redhat.com> View the changeset: https://github.com/libvirt/libvirt/compare/v4.3.0-rc1 View the full build log and details: https://travis-ci.org/libvirt/libvirt/builds/371555726?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=dd9fc39348554ab6b…)
1 0
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-master-syntax-check » libvirt-debian-9 #1051
by ci@centos.org 26 Apr '18

26 Apr '18
See <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-debia…> ------------------------------------------ Started by upstream project "libvirt-master-syntax-check" build number 1051 originally caused by: Started by upstream project "libvirt-master-build" build number 1382 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-debian-9 (libvirt) in workspace <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-debia…> [libvirt-master] $ /bin/sh -xe /tmp/jenkins6162196665466388156.sh + cd build + make -j3 syntax-check GEN prohibit-duplicate-header GEN spacing-check GEN test-wrap-argv GEN mock-noinline /usr/bin/perl ../tests/group-qemu-caps.pl --check cannot open src/qemu/qemu_capabilities.c: No such file or directory at ../tests/group-qemu-caps.pl line 60. ../cfg.mk:1123: recipe for target 'group-qemu-caps' failed make: *** [group-qemu-caps] Error 2 make: *** Waiting for unfinished jobs.... Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-master-syntax-check » libvirt-centos-7 #1051
by ci@centos.org 26 Apr '18

26 Apr '18
See <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-cento…> ------------------------------------------ Started by upstream project "libvirt-master-syntax-check" build number 1051 originally caused by: Started by upstream project "libvirt-master-build" build number 1382 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-centos-7 (libvirt) in workspace <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-cento…> [libvirt-master] $ /bin/sh -xe /tmp/jenkins5582940382154875280.sh + cd build + gmake -j3 syntax-check GEN spacing-check GEN test-wrap-argv GEN prohibit-duplicate-header GEN mock-noinline /usr/bin/perl ../tests/group-qemu-caps.pl --check cannot open src/qemu/qemu_capabilities.c: No such file or directory at ../tests/group-qemu-caps.pl line 60. gmake: *** [group-qemu-caps] Error 2 gmake: *** Waiting for unfinished jobs.... Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-master-syntax-check » libvirt-fedora-rawhide #1051
by ci@centos.org 26 Apr '18

26 Apr '18
See <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-fedor…> ------------------------------------------ Started by upstream project "libvirt-master-syntax-check" build number 1051 originally caused by: Started by upstream project "libvirt-master-build" build number 1382 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-master-syntax-check/systems=libvirt-fedor…> [libvirt-master] $ /bin/sh -xe /tmp/jenkins4467841220963859917.sh + cd build + gmake -j3 syntax-check GEN spacing-check GEN prohibit-duplicate-header GEN test-wrap-argv GEN mock-noinline /usr/bin/perl ../tests/group-qemu-caps.pl --check cannot open src/qemu/qemu_capabilities.c: No such file or directory at ../tests/group-qemu-caps.pl line 60. gmake: *** [../cfg.mk:1123: group-qemu-caps] Error 2 gmake: *** Waiting for unfinished jobs.... Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-master-syntax-check » libvirt-fedora-27 #1051
by ci@centos.org 26 Apr '18

26 Apr '18
See <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-fedor…> ------------------------------------------ Started by upstream project "libvirt-master-syntax-check" build number 1051 originally caused by: Started by upstream project "libvirt-master-build" build number 1382 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-master-syntax-check/systems=libvirt-fedor…> [libvirt-master] $ /bin/sh -xe /tmp/jenkins1743056552001134228.sh + cd build + gmake -j3 syntax-check GEN test-wrap-argv GEN spacing-check GEN prohibit-duplicate-header GEN mock-noinline /usr/bin/perl ../tests/group-qemu-caps.pl --check cannot open src/qemu/qemu_capabilities.c: No such file or directory at ../tests/group-qemu-caps.pl line 60. gmake: *** [../cfg.mk:1123: group-qemu-caps] Error 2 gmake: *** Waiting for unfinished jobs.... Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-master-syntax-check » libvirt-fedora-26 #1051
by ci@centos.org 26 Apr '18

26 Apr '18
See <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-fedor…> ------------------------------------------ Started by upstream project "libvirt-master-syntax-check" build number 1051 originally caused by: Started by upstream project "libvirt-master-build" build number 1382 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-fedora-26 (libvirt) in workspace <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-fedor…> [libvirt-master] $ /bin/sh -xe /tmp/jenkins6415370628610787564.sh + cd build + gmake -j3 syntax-check GEN spacing-check GEN test-wrap-argv GEN prohibit-duplicate-header /usr/bin/perl ../tests/group-qemu-caps.pl --check GEN mock-noinline cannot open src/qemu/qemu_capabilities.c: No such file or directory at ../tests/group-qemu-caps.pl line 60. gmake: *** [../cfg.mk:1123: group-qemu-caps] Error 2 gmake: *** Waiting for unfinished jobs.... Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libvirt-master-syntax-check » libvirt-debian-8 #1051
by ci@centos.org 26 Apr '18

26 Apr '18
See <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-debia…> ------------------------------------------ Started by upstream project "libvirt-master-syntax-check" build number 1051 originally caused by: Started by upstream project "libvirt-master-build" build number 1382 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-debian-8 (libvirt) in workspace <https://ci.centos.org/job/libvirt-master-syntax-check/systems=libvirt-debia…> [libvirt-master] $ /bin/sh -xe /tmp/jenkins5247156550338919201.sh + cd build + make -j3 syntax-check GEN test-wrap-argv GEN spacing-check GEN prohibit-duplicate-header GEN mock-noinline /usr/bin/perl ../tests/group-qemu-caps.pl --check cannot open src/qemu/qemu_capabilities.c: No such file or directory at ../tests/group-qemu-caps.pl line 60. ../cfg.mk:1123: recipe for target 'group-qemu-caps' failed make: *** [group-qemu-caps] Error 2 make: *** Waiting for unfinished jobs.... Build step 'Execute shell' marked build as failure
1 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-master-check » libvirt-freebsd-10 #120
by ci@centos.org 25 Apr '18

25 Apr '18
See <https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…> ------------------------------------------ Started by upstream project "libosinfo-master-check" build number 120 originally caused by: Started by upstream project "libosinfo-master-syntax-check" build number 121 originally caused by: Started by upstream project "libosinfo-master-build" build number 140 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-freebsd-10 (libvirt) in workspace <https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…> [libosinfo-master] $ /bin/sh -xe /tmp/jenkins261849258304382248.sh + cd build + gmake -j3 check GEN public-submodule-commit Making check in osinfo gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake check-am gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake check-local gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> GEN check-symsorting gmake[3]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> Making check in tools gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> Making check in docs gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> Making check in reference gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[2]: Nothing to be done for 'check'. gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> 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-10…'> gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> Making check in po gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> INTLTOOL_EXTRACT="/usr/local/bin/intltool-extract" XGETTEXT="/usr/local/bin/xgettext" srcdir=../../po /usr/local/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/local/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> Making check in examples gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> Making check in tests gmake[1]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> 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-10…'> 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-10…'> gmake check-TESTS gmake[2]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[3]: Entering directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> PASS: test-entity PASS: test-device PASS: test-list PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-productfilter PASS: test-os PASS: test-oslist PASS: test-platformlist PASS: test-db PASS: test-platform PASS: test-install-script SKIP: test-mediauris SKIP: test-treeuris PASS: test-loader Trace/BPT 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-10…'> gmake[2]: *** [Makefile:1365: check-TESTS] Error 2 gmake[2]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> gmake[1]: *** [Makefile:1548: check-am] Error 2 gmake[1]: Leaving directory '/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…'> 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/windows: OK /isodetect/ubuntu: OK /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: ** (/usr<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-freebsd-10…>:8592): ERROR **: ISO openSUSE-Leap-42.3-NET-x86_64.iso.txt was not matched by OS opensuse42.3 FAIL test-isodetect (exit status: 133) 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 1
0 0
[Libvirt-ci] Build failed in Jenkins: libosinfo-master-check » libvirt-fedora-rawhide #120
by ci@centos.org 25 Apr '18

25 Apr '18
See <https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…> ------------------------------------------ Started by upstream project "libosinfo-master-check" build number 120 originally caused by: Started by upstream project "libosinfo-master-syntax-check" build number 121 originally caused by: Started by upstream project "libosinfo-master-build" build number 140 originally caused by: Started by an SCM change [EnvInject] - Loading node environment variables. Building remotely on libvirt-fedora-rawhide (libvirt) in workspace <https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…> [libosinfo-master] $ /bin/sh -xe /tmp/jenkins4681507608750247757.sh + cd build + gmake -j3 check GEN public-submodule-commit Making check in osinfo gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake check-am gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake check-local gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> GEN check-symfile GEN check-symsorting gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> Making check in tools gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> Making check in docs gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> Making check in reference gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[2]: Nothing to be done for 'check-am'. gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> Making check in po gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> INTLTOOL_EXTRACT="/usr/bin/intltool-extract" XGETTEXT="/usr/bin/xgettext" srcdir=../../po /usr/bin/intltool-update --gettext-package libosinfo --pot rm -f missing notexist srcdir=../../po /usr/bin/intltool-update -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> Making check in examples gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[1]: Nothing to be done for 'check'. gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> Making check in tests gmake[1]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> 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 '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> CC test_device-test-device.o CC test_entity-test-entity.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 '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake check-TESTS gmake[2]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[3]: Entering directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> PASS: test-entity PASS: test-list PASS: test-device PASS: test-devicelist PASS: test-filter PASS: test-product PASS: test-os PASS: test-oslist PASS: test-productfilter PASS: test-platform PASS: test-platformlist PASS: test-db PASS: test-install-script SKIP: test-mediauris SKIP: test-treeuris PASS: test-loader ../../build-aux/test-driver: line 107: 13448 Trace/breakpoint trap (core dumped) "$@" > $log_file 2>&1 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:1280: test-suite.log] Error 1 gmake[3]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[2]: *** [Makefile:1388: check-TESTS] Error 2 gmake[2]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> gmake[1]: *** [Makefile:1574: check-am] Error 2 gmake[1]: Leaving directory '<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…'> 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/windows: OK /isodetect/ubuntu: OK /isodetect/sles: OK /isodetect/sled: OK /isodetect/rhel: OK /isodetect/popos: OK /isodetect/opensuse: ** (<https://ci.centos.org/job/libosinfo-master-check/systems=libvirt-fedora-raw…>:13448): ERROR **: 06:12:44.119: ISO openSUSE-Leap-42.3-NET-x86_64.iso.txt was not matched by OS opensuse42.3 FAIL test-isodetect (exit status: 133) 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 1
0 0
  • ← Newer
  • 1
  • ...
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • ...
  • 941
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.