[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [libvirt test] 101436: regressions - FAIL
flight 101436 libvirt real [real] http://logs.test-lab.xenproject.org/osstest/logs/101436/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-libvirt-xsm 5 xen-install fail REGR. vs. 101412 Tests which did not succeed, but are not blocking: test-amd64-amd64-libvirt 12 migrate-support-check fail never pass test-amd64-amd64-libvirt-xsm 12 migrate-support-check fail never pass test-amd64-i386-libvirt 12 migrate-support-check fail never pass test-amd64-i386-libvirt-xsm 12 migrate-support-check fail never pass test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm 10 migrate-support-check fail never pass test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 10 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-raw 13 guest-saverestore fail never pass test-armhf-armhf-libvirt-qcow2 11 migrate-support-check fail never pass test-armhf-armhf-libvirt-qcow2 13 guest-saverestore fail never pass test-armhf-armhf-libvirt 12 migrate-support-check fail never pass test-armhf-armhf-libvirt 14 guest-saverestore fail never pass version targeted for testing: libvirt a564568f066c78ed250b67105977740b563232bd baseline version: libvirt e1a33ed18c0200e26d92eb2900943573fc0f7d60 Last test of basis 101412 2016-10-13 04:21:58 Z 1 days Testing same since 101436 2016-10-14 04:21:16 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Ivan Baldo <ibaldo@xxxxxxxxxxxxx> Martin Kletzander <mkletzan@xxxxxxxxxx> Michal Privoznik <mprivozn@xxxxxxxxxx> Peter Krempa <pkrempa@xxxxxxxxxx> jobs: build-amd64-xsm pass build-armhf-xsm pass build-i386-xsm pass build-amd64 pass build-armhf pass build-i386 pass build-amd64-libvirt pass build-armhf-libvirt pass build-i386-libvirt pass build-amd64-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-armhf-armhf-libvirt-xsm fail test-amd64-i386-libvirt-xsm pass test-amd64-amd64-libvirt pass test-armhf-armhf-libvirt fail test-amd64-i386-libvirt pass test-amd64-amd64-libvirt-pair pass test-amd64-i386-libvirt-pair pass test-armhf-armhf-libvirt-qcow2 fail test-armhf-armhf-libvirt-raw fail 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 a564568f066c78ed250b67105977740b563232bd Author: Michal Privoznik <mprivozn@xxxxxxxxxx> Date: Fri Oct 14 10:09:03 2016 +0800 virLogDefineOutputs: Fix build without syslog.h Not every system out there has syslog, that's why we check for it in our configure script. However, in 640b58abdf while fixing another issue, some variables and functions are called that are defined only when syslog.h is present. But these function calls/variables were not guarded by #ifdef-s. Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> commit cf9a423cbd06440eb287f2faf2c267253db9e366 Author: Peter Krempa <pkrempa@xxxxxxxxxx> Date: Mon Oct 10 17:49:03 2016 +0200 schema: smbios: allow any strings The smbios docs allow any string to be passed and libvirt does not really do any validation on them. Allow passing any string. Partially resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1373535 commit fef3a810c7cc50bfc7ad274e5d658d96d2db6698 Author: Peter Krempa <pkrempa@xxxxxxxxxx> Date: Mon Oct 10 06:26:50 2016 +0200 qemu: command: escape smbios entry strings We pass free-form strings from the users to qemu, thus we need escape commas since they are passed to qemu monitor. Partially resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1373535 commit ec45439512f8136fa9dcdb53215cec0ccbf99d0d Author: Peter Krempa <pkrempa@xxxxxxxxxx> Date: Mon Oct 10 06:03:57 2016 +0200 qemu: command: Don't bother reporting errors in smbios formatters qemuBuildSmbiosBiosStr and qemuBuildSmbiosSystemStr return NULL if there's nothing to format on the commandline. Reporting errors from buffer creation doesn't make sense since it would be ignored. commit 8d67e2849ec37baf7a81d492eafe5fa9d1484b57 Author: Peter Krempa <pkrempa@xxxxxxxxxx> Date: Mon Oct 10 06:01:25 2016 +0200 qemu: command: Fix up coding style of smbios commandine formatters commit b7d2d4af2bd5813f227c0a0557ccd2a53b95f49a Author: Michal Privoznik <mprivozn@xxxxxxxxxx> Date: Thu Oct 6 16:54:41 2016 +0200 src: Treat PID as signed This initially started as a fix of some debug printing in virCgroupDetect. However it turned out that other places suffer from the similar problem. While dealing with pids, esp. in cases where we cannot use pid_t for ABI stability reasons, we often chose an unsigned integer type. This makes no sense as pid_t is signed. Also, new syntax-check rule is introduced so we won't repeat this mistake. Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> commit 83adcb5bdf8354bab8b1779a4655b963a36f050c Author: Ivan Baldo <ibaldo@xxxxxxxxxxxxx> Date: Tue Oct 11 17:13:57 2016 -0300 virsh: Be explicit that vol-resize is an offline operation. It is stated in the manual already, so let's mention the same thing in the description to avoid causing problems. Signed-off-by: Martin Kletzander <mkletzan@xxxxxxxxxx> _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |