[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [libvirt test] 110162: regressions - FAIL
flight 110162 libvirt real [real] http://logs.test-lab.xenproject.org/osstest/logs/110162/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-libvirt 11 guest-start fail REGR. vs. 110107 Tests which did not succeed, but are not blocking: test-armhf-armhf-libvirt 13 saverestore-support-check fail like 110107 test-armhf-armhf-libvirt-raw 12 saverestore-support-check fail like 110107 test-armhf-armhf-libvirt-xsm 13 saverestore-support-check fail like 110107 test-amd64-amd64-libvirt 12 migrate-support-check fail never pass test-amd64-i386-libvirt-xsm 12 migrate-support-check fail never pass test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 10 migrate-support-check fail never pass test-arm64-arm64-libvirt-xsm 12 migrate-support-check fail never pass test-arm64-arm64-libvirt-xsm 13 saverestore-support-check fail never pass test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm 10 migrate-support-check fail never pass test-arm64-arm64-libvirt 12 migrate-support-check fail never pass test-arm64-arm64-libvirt 13 saverestore-support-check fail never pass test-arm64-arm64-libvirt-qcow2 11 migrate-support-check fail never pass test-arm64-arm64-libvirt-qcow2 12 saverestore-support-check fail never pass test-armhf-armhf-libvirt 12 migrate-support-check fail never pass test-amd64-amd64-libvirt-xsm 12 migrate-support-check fail never pass test-amd64-amd64-libvirt-vhd 11 migrate-support-check fail never pass test-armhf-armhf-libvirt-raw 11 migrate-support-check fail never pass test-armhf-armhf-libvirt-xsm 12 migrate-support-check fail never pass version targeted for testing: libvirt 9ea3424a178b8ab956a7ef22bab47e4ee3ebb08b baseline version: libvirt e146264aaadf5aecf727d8c7b3d85683b55b6c48 Last test of basis 110107 2017-06-08 04:22:16 Z 1 days Testing same since 110162 2017-06-09 04:30:35 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Ján Tomko <jtomko@xxxxxxxxxx> Michal Privoznik <mprivozn@xxxxxxxxxx> Roman Bogorodskiy <bogorodskiy@xxxxxxxxx> jobs: build-amd64-xsm pass build-arm64-xsm pass build-armhf-xsm pass build-i386-xsm pass build-amd64 pass build-arm64 pass build-armhf pass build-i386 pass build-amd64-libvirt pass build-arm64-libvirt pass build-armhf-libvirt pass build-i386-libvirt pass build-amd64-pvops pass build-arm64-pvops pass build-armhf-pvops pass build-i386-pvops pass test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm pass test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm pass test-amd64-amd64-libvirt-xsm pass test-arm64-arm64-libvirt-xsm pass test-armhf-armhf-libvirt-xsm pass test-amd64-i386-libvirt-xsm pass test-amd64-amd64-libvirt pass test-arm64-arm64-libvirt pass test-armhf-armhf-libvirt pass test-amd64-i386-libvirt fail test-amd64-amd64-libvirt-pair pass test-amd64-i386-libvirt-pair pass test-arm64-arm64-libvirt-qcow2 pass test-armhf-armhf-libvirt-raw pass test-amd64-amd64-libvirt-vhd pass ------------------------------------------------------------ sg-report-flight on osstest.test-lab.xenproject.org logs: /home/logs/logs images: /home/logs/images Logs, config files, etc. are available at http://logs.test-lab.xenproject.org/osstest/logs Explanation of these reports, and of osstest in general, is at http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README.email;hb=master http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README;hb=master Test harness code can be found at http://xenbits.xen.org/gitweb?p=osstest.git;a=summary Not pushing. ------------------------------------------------------------ commit 9ea3424a178b8ab956a7ef22bab47e4ee3ebb08b Author: Roman Bogorodskiy <bogorodskiy@xxxxxxxxx> Date: Fri May 26 21:43:42 2017 +0400 virsh: workaround readline prototypes warnings When building with clang 4.0.0, virsh build fails like this: gmake[3]: Entering directory '/usr/home/novel/code/libvirt/tools' CC virsh-virsh.o In file included from virsh.c:45: In file included from /usr/local/include/readline/readline.h:31: /usr/local/include/readline/rltypedefs.h:35:22: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes] typedef int Function () __attribute__ ((deprecated)); ^ void /usr/local/include/readline/rltypedefs.h:36:24: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes] typedef void VFunction () __attribute__ ((deprecated)); ^ void /usr/local/include/readline/rltypedefs.h:37:26: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes] typedef char *CPFunction () __attribute__ ((deprecated)); ^ void /usr/local/include/readline/rltypedefs.h:38:28: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes] typedef char **CPPFunction () __attribute__ ((deprecated)); ^ void In file included from virsh.c:45: /usr/local/include/readline/readline.h:385:23: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes] extern int rl_message (); ^ void 5 errors generated. gmake[3]: *** [Makefile:2823: virsh-virsh.o] Error 1 Fix that by adding -D_FUNCTION_DEF to READLINE_CFLAGS to fix *Function related warnings and add a check for stdarg.h so we have HAVE_STDARG_H defined that's needed by the readline headers to use proper rl_message declaration. Bug report on the readline mailing list: http://lists.gnu.org/archive/html/bug-readline/2017-05/msg00004.html commit 5f44d7e357f61f7be636a0e2e6d35453cbc3b589 Author: Michal Privoznik <mprivozn@xxxxxxxxxx> Date: Thu Jun 8 13:45:31 2017 +0200 qemuDomainChangeNet: Forbid changing MTU https://bugzilla.redhat.com/show_bug.cgi?id=1447618 Currently, any attempt to change MTU on an interface that is plugged to a running domain is silently ignored. We should either do what's asked or error out. Well, we can update the host side of the interface, but we cannot change 'host_mtu' attribute for the virtio-net device. Therefore we have to error out. Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> Reviewed-by: Laine Stump <laine@xxxxxxxxx> commit f00e6f8bc9081f158b7d6a1dcfa82218b1dbfb4d Author: Michal Privoznik <mprivozn@xxxxxxxxxx> Date: Thu Jun 8 10:14:36 2017 +0200 qemu: Set iface MTU on hotplug https://bugzilla.redhat.com/show_bug.cgi?id=1408701 While implementing MTU (572eda12ad and friends), I've forgotten to actually set MTU on the host NIC in case of hotplug. We correctly tell qemu on the monitor what the MTU should be, but we are not actually setting it on the host NIC. Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> Reviewed-by: Laine Stump <laine@xxxxxxxxx> commit b2cbc3a0607bf26a82911f7db6dcbc09c9bbf5e8 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed May 24 17:09:12 2017 +0200 qemu: format virtio-related options on the command line Format iommu_platform= and ats= for virtio devices. https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit 56a28fbb57daa96fc7fe8f0516c8ee937ec3b39b Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed May 24 17:09:46 2017 +0200 qemuxml2argvtest: add virtio-options test case Add a test case to demonstrate the addition of new command line options https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit cc0933d3501229cdc8cf183a52a14c9b1c8de666 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Mon Aug 8 15:42:18 2016 +0200 Add virtio-related options to input devices https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit f5384fb4029a59624e728a2e0d37e6a62efbdc52 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Mon Jun 6 16:51:31 2016 +0200 Add virtio-related options to video https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit f65db1be1200b656094180ecfdb63f8bd0158cab Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Mon Jun 6 17:01:56 2016 +0200 Add virtio-related options to rng devices https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit b10c22d9fa11e2a67eca04592688bd701700f77f Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Mon Jun 6 16:50:57 2016 +0200 Add virtio-related options to filesystems https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit c85217cf8a81879d065b9d13e876eec141f63f6f Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Mon Jun 6 16:50:22 2016 +0200 Add virtio-related options to controllers https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit 1bc2cb3b3205dca7174147ac970e2b82c8af69da Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Mon Jun 6 16:49:17 2016 +0200 Add virtio-related options to disks https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit 82223f9364a9f47a39b7c66c241b82ae62f9fb4b Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed May 24 16:47:28 2017 +0200 add virtio-related options to memballoon https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit fd518643402d8233ceffe4ef28279bcce53284f6 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed May 24 16:44:44 2017 +0200 Add virtio-related options to interfaces <interface type='user'> <mac address='52:54:56:5a:5c:5e'/> <model type='virtio'/> <driver iommu='on' ats='on'/> </interface> https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit d1feb4773d41b928dc1079dfc19d17b5a0e5957b Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed Jun 7 20:50:39 2017 +0200 conf: use a leading space in virDomainVirtioNetDriverFormat Instead of formatting a space after every option. Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit 15911ab8201f46b99352eea818c798828b6e4ff1 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed May 24 16:47:21 2017 +0200 qemuxml2xmltest: add virtio-options test Add a test case with all the virtio devices we know to demonstrate the addition of new options. https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit 240e443afdac0df342bb462ac2754a46e6efbc23 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed May 3 17:18:47 2017 +0200 qemu: format device-iotlb on intel-iommu command line Format the device-iotlb attribute. https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit 27b187be3988c60cd26e08ab4bcab66bed5a3646 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Wed May 3 17:07:55 2017 +0200 conf: add iotlb attribute to iommu Add a new iotlb attribute to the iommu device to control the device IOTLB support for intel-iommu. https://bugzilla.redhat.com/show_bug.cgi?id=1283251 Reviewed-by: Pavel Hrdina <phrdina@xxxxxxxxxx> commit f3908d8557dc609e2262099d76c57b0bcc4b0917 Author: Michal Privoznik <mprivozn@xxxxxxxxxx> Date: Thu Jun 8 14:58:22 2017 +0200 virNetDevOpenvswitchGetVhostuserIfname: Fix off by one error https://bugzilla.redhat.com/show_bug.cgi?id=1459091 We try to get the last element of the passed path by calling strrch(path, '/'). However, the pointer that strrchr() returns points at the slash, We want string that starts right after that. Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> commit 2a13a0a103340878b05a5ae0b9f454721f67dbb3 Author: Michal Privoznik <mprivozn@xxxxxxxxxx> Date: Wed Jun 7 15:43:58 2017 +0200 qemu: Query for vhostuser iface names at runtime https://bugzilla.redhat.com/show_bug.cgi?id=1459091 Currently, we are querying for vhostuser interface name in post parse callback. At that time interface might not yet exist. However, it has to exist when starting domain. Therefore it makes more sense to query its name at that point. This partially reverts 57b5e27. Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |