[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [libvirt test] 131792: regressions - FAIL
flight 131792 libvirt real [real] http://logs.test-lab.xenproject.org/osstest/logs/131792/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-libvirt 7 xen-boot fail REGR. vs. 131766 Tests which did not succeed, but are not blocking: test-armhf-armhf-libvirt-raw 13 saverestore-support-check fail like 131766 test-amd64-amd64-libvirt 13 migrate-support-check fail never pass test-amd64-amd64-libvirt-xsm 13 migrate-support-check fail never pass test-amd64-i386-libvirt-xsm 13 migrate-support-check fail never pass test-amd64-i386-libvirt 13 migrate-support-check fail never pass test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm 11 migrate-support-check fail never pass test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 11 migrate-support-check fail never pass test-amd64-amd64-libvirt-vhd 12 migrate-support-check fail never pass test-armhf-armhf-libvirt-raw 12 migrate-support-check fail never pass version targeted for testing: libvirt f3a4fbd24bf41a74c3dbbb36c7de88e08c1bc7fd baseline version: libvirt 99c33a7cbf7fdb607a43a91342a44a7a22e20bfb Last test of basis 131766 2019-01-06 04:18:57 Z 2 days Testing same since 131792 2019-01-08 04:19:08 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Eric Blake <eblake@xxxxxxxxxx> Han Han <hhan@xxxxxxxxxx> Ján Tomko <jtomko@xxxxxxxxxx> Michal Privoznik <mprivozn@xxxxxxxxxx> jobs: build-amd64-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-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-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 f3a4fbd24bf41a74c3dbbb36c7de88e08c1bc7fd Author: Eric Blake <eblake@xxxxxxxxxx> Date: Mon Jan 7 21:50:08 2019 -0600 maint: Fix VPATH build In a VPATH build, <config.h> is in the builddir (which automake includes automatically), but it includes <config-post.h> from the top source directory (which is not automatic); hence, we need to keep the -I(top_srcdir) directive that was accidentally removed from commit 7a879323 (the problem is not visible in an in-tree build). Signed-off-by: Eric Blake <eblake@xxxxxxxxxx> commit 1862a554625e9e25b00e2ff85de5f576c1a66c8a Author: Eric Blake <eblake@xxxxxxxxxx> Date: Fri Jan 4 13:47:44 2019 -0600 maint: Prefer AM_CPPFLAGS over INCLUDES Our use of INCLUDES in Makefile.am hearkens back to when we had to cater to automake 1.9.6 (thanks, RHEL 5) which lacked AM_CPPFLAGS. Modern Automake flags a warning that INCLUDES is deprecated, and now that we mandate RHEL 7 or better (see commit c1bc9c66), we no longer have to cater to the old spelling. This change will also make it easier to do per-binary CPPFLAGS. Signed-off-by: Eric Blake <eblake@xxxxxxxxxx> Reviewed-by: Ján Tomko <jtomko@xxxxxxxxxx> commit 7a879323a96514ca53b69f25bd944bb55f69343f Author: Eric Blake <eblake@xxxxxxxxxx> Date: Fri Jan 4 13:42:52 2019 -0600 maint: Drop unused GETTEXT_CPPFLAGS variable Commit c0a8ea45 removed the use of gettextize, and the setting of GETTEXT_CPPFLAGS, but did not scrub the now-unused variable from Makefile.am snippets. Signed-off-by: Eric Blake <eblake@xxxxxxxxxx> Reviewed-by: Ján Tomko <jtomko@xxxxxxxxxx> commit ab51b22c07d23ce847d0c741a42746444e6ffad5 Author: Eric Blake <eblake@xxxxxxxxxx> Date: Thu Jan 3 13:30:39 2019 -0600 maint: split long lines for BSD syntax-check Similar to the gnulib changes we just incorporated into maint.mk, it's time to use '$(VC_LIST) | xargs program' instead of 'program $$($(VC_LIST))', in order to bypass the problem of hitting argv limits due to our large set of files. Drop several uses of $$files as a temporary variable when we can instead directly use xargs. While at it, fix a typo in the prohibit_windows_special_chars error message. Note that 'grep $pattern $(generate list)' has be be rewritten as 'generate list | xargs grep $pattern /dev/null' - this is because for a list that is just long enough, and without /dev/null, xargs could make a worst-case split of 'grep $pattern all but one; grep $pattern last' which has different output (grep includes the filename when there was more than one file, but omits it for a single file), while our conversion gives 'grep $pattern /dev/null all but one; grep $pattern /dev/null last'. We are less concerned about the empty list case (why would we run the syntax check if we didn't have at least one file?), but grepping /dev/null happens to produce no output and thus nicely also solves that problem without relying on the GNU extension of 'xargs -r'. Signed-off-by: Eric Blake <eblake@xxxxxxxxxx> Reviewed-by: Ján Tomko <jtomko@xxxxxxxxxx> commit 2e258dae61fc54f960058d91c4c34c4275bc02e7 Author: Eric Blake <eblake@xxxxxxxxxx> Date: Thu Jan 3 09:31:37 2019 -0600 maint: prefer $(GREP) in cfg.mk We already used $(GREP) in some places, but might as well use it everywhere during syntax check, in line with similar recent gnulib changes. Signed-off-by: Eric Blake <eblake@xxxxxxxxxx> Reviewed-by: Ján Tomko <jtomko@xxxxxxxxxx> commit 7db886e71cc61403ef57e9788ea6602bb1ff3bef Author: Eric Blake <eblake@xxxxxxxxxx> Date: Thu Jan 3 07:42:41 2019 -0600 maint: update gnulib for syntax-check on BSD In particular, this incorporates Roman's patches to allow 'make syntax-check' to work on BSD with its exec argv limitations that previously failed when trying to grep the large number of files present in libvirt. cfg.mk needs similar changes, but that will be tackled separately. Signed-off-by: Eric Blake <eblake@xxxxxxxxxx> Reviewed-by: Ján Tomko <jtomko@xxxxxxxxxx> commit 4ec225fc4e24626a3f3340de768a25ea0c40a309 Author: Han Han <hhan@xxxxxxxxxx> Date: Mon Jan 7 16:08:39 2019 +0800 news: Add support for postcopy-requests migration statistics This feature is introduced by 3f4914e0. Signed-off-by: Han Han <hhan@xxxxxxxxxx> Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> commit 224389011cfd7f37e0be65257834c9d82d20e819 Author: Han Han <hhan@xxxxxxxxxx> Date: Mon Jan 7 16:08:38 2019 +0800 news: Add support for "stibp" x86_64 feature This feature is in since eb1b551d. Signed-off-by: Han Han <hhan@xxxxxxxxxx> Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> commit b6f7825992fc7eaef1db0afe73d6cac5bf534b45 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Fri Jan 4 16:16:13 2019 +0100 examples: include config.h Since gnulib commit 6954995d unistd.h is included via stdlib.h on BSD systems, which requires config.h to be included first. Add config.h to the files that use it. Part of this commit reverts commit 6ee918de7462a20947241ec817c4571d6b84a716 Signed-off-by: Ján Tomko <jtomko@xxxxxxxxxx> Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx> commit 31903c4a5debaaabdf7c4170992e636b7b95d873 Author: Ján Tomko <jtomko@xxxxxxxxxx> Date: Fri Jan 4 16:12:51 2019 +0100 examples: add spaces after #include Lead by example in examples/ Signed-off-by: Ján Tomko <jtomko@xxxxxxxxxx> Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx> _______________________________________________ osstest-output mailing list osstest-output@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/osstest-output
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |