Message ID | 1481611195-105372-10-git-send-email-konrad.wilk@oracle.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tue, Dec 13, 2016 at 01:39:55AM -0500, Konrad Rzeszutek Wilk wrote: [...] > Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> > --- > make-flight | 12 ++++++++++++ > mfi-common | 9 +++++++++ > 2 files changed, 21 insertions(+) > > diff --git a/make-flight b/make-flight > index a374884..5b2f1dd 100755 > --- a/make-flight > +++ b/make-flight > @@ -468,6 +468,17 @@ do_xtf_tests () { > done > } > > +do_livepatch_tests () { > + if ! branch_wants_livepatch_tests; then > + return > + fi > + > + job_create_test test-$xenarch$kern-$dom0arch-livepatch \ > + test-livepatch xl $xenarch $dom0arch \ > + xen_boot_append='loglvl=all' \ > + all_hostflags=$most_hostflags > +} > + > do_multivcpu_tests () { > if [ $xenarch != $dom0arch ]; then > return > @@ -753,6 +764,7 @@ test_matrix_do_one () { > do_pvgrub_tests > > do_xtf_tests > + do_livepatch_tests > } > > if [ x$buildflight = x ]; then > diff --git a/mfi-common b/mfi-common > index 76b93d1..08494f3 100644 > --- a/mfi-common > +++ b/mfi-common > @@ -76,6 +76,15 @@ branch_wants_xtf_tests () { > esac > } > > +branch_wants_livepatch_tests () { > + case "$branch" in > + osstest*) return 0;; > + xen-*) return 0;; I think you need to filter this test case to only run for 4.7+. There is no point in running it for older releases. > + livepatch*) return 0;; > + *) return 1;; > + esac > +} > + > job_create_build () { > job_create_build_filter_callback "$@" || return 0 > > -- > 2.1.4 > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xen.org > https://lists.xen.org/xen-devel
Wei Liu writes ("Re: [Xen-devel] [PATCH v2 9/9] make-flight/mfi-common: Add livepatch build/test target in the matrix."): > I think you need to filter this test case to only run for 4.7+. > > There is no point in running it for older releases. There are basically two plausible approaches to this: 1. Set up the job for all branches, including old ones, and arrange for the new job to fail early ("fail never pass") before host allocation. That would waste minimal time etc. 2. Arrange to set up the job only on branches where attempting it is worthly. I had been suggesting to Konrad that he should do 2. There are reasons to prefer both options. (1) is simpler in make-flight etc.; (2) clutters the test reports (and database tables) with complaints about unimplemented features. Looking at Konrad actual patches and at the current code: The "thing not built, do not run test" logic is as follows: - sg-run-job runs `ts-build-check' (in the proc `check-not-blocked') before host allocation and setup - ts-build-check iterates over all things referred to by runvars of the form [IDENT_]PARTbuildjob. It then looks inside those for the dist PART (ie the runvar path_PARTdist). In Konrad's new code, - The xlptest output is only stashed if it was generated by the build. This is correct. - However, the test jobs refer to the build jobs via the `xenbuildjob' runvar. This does not match the use pattern expected by ts-build-chedk, which would be to look for `xlptestbuildjob'. I think this latter point should be fixed (by adding that runvar to the test cases and having ts-livepatch-install refer to it). Then I think Konrad or I could usefully run an ad-hoc flight on an old Xen branch and check that it DTRT. This would implement option (1) above. I would not object to implementing option (2) as well, which would be just a matter of making this case statement a bit more sophisticated. Ian.
diff --git a/make-flight b/make-flight index a374884..5b2f1dd 100755 --- a/make-flight +++ b/make-flight @@ -468,6 +468,17 @@ do_xtf_tests () { done } +do_livepatch_tests () { + if ! branch_wants_livepatch_tests; then + return + fi + + job_create_test test-$xenarch$kern-$dom0arch-livepatch \ + test-livepatch xl $xenarch $dom0arch \ + xen_boot_append='loglvl=all' \ + all_hostflags=$most_hostflags +} + do_multivcpu_tests () { if [ $xenarch != $dom0arch ]; then return @@ -753,6 +764,7 @@ test_matrix_do_one () { do_pvgrub_tests do_xtf_tests + do_livepatch_tests } if [ x$buildflight = x ]; then diff --git a/mfi-common b/mfi-common index 76b93d1..08494f3 100644 --- a/mfi-common +++ b/mfi-common @@ -76,6 +76,15 @@ branch_wants_xtf_tests () { esac } +branch_wants_livepatch_tests () { + case "$branch" in + osstest*) return 0;; + xen-*) return 0;; + livepatch*) return 0;; + *) return 1;; + esac +} + job_create_build () { job_create_build_filter_callback "$@" || return 0
The diff of standalone-generate-dump-flight-runvars before and after is quite big: @@ -7764,6 +7764,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current osstest test-amd64-amd64-libvirt-vhd all_host_di_version current osstest test-amd64-amd64-libvirt-xsm all_host_di_version current +osstest test-amd64-amd64-livepatch all_host_di_version current osstest test-amd64-amd64-pair all_host_di_version current osstest test-amd64-amd64-pygrub all_host_di_version current osstest test-amd64-amd64-qemuu-nested-amd all_host_di_version current @@ -7793,6 +7794,7 @@ osstest test-amd64-i386-libvirt-pair all_host_di_version current osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current osstest test-amd64-i386-libvirt-xsm all_host_di_version current +osstest test-amd64-i386-livepatch all_host_di_version current osstest test-amd64-i386-pair all_host_di_version current osstest test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current osstest test-amd64-i386-qemut-rhel6hvm-intel all_host_di_version current @@ -7851,6 +7853,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie osstest test-amd64-amd64-libvirt-vhd all_host_suite jessie osstest test-amd64-amd64-libvirt-xsm all_host_suite jessie +osstest test-amd64-amd64-livepatch all_host_suite jessie osstest test-amd64-amd64-pair all_host_suite jessie osstest test-amd64-amd64-pygrub all_host_suite jessie osstest test-amd64-amd64-qemuu-nested-amd all_host_suite jessie @@ -7880,6 +7883,7 @@ osstest test-amd64-i386-libvirt-pair all_host_suite jessie osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie osstest test-amd64-i386-libvirt-xsm all_host_suite jessie +osstest test-amd64-i386-livepatch all_host_suite jessie osstest test-amd64-i386-pair all_host_suite jessie osstest test-amd64-i386-qemut-rhel6hvm-amd all_host_suite jessie osstest test-amd64-i386-qemut-rhel6hvm-intel all_host_suite jessie @@ -7923,6 +7927,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,hvm osstest test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test osstest test-amd64-amd64-libvirt-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test +osstest test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test osstest test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 osstest test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test osstest test-amd64-amd64-qemuu-nested-amd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd @@ -7952,6 +7957,7 @@ osstest test-amd64-i386-libvirt-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm osstest test-amd64-i386-libvirt-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test +osstest test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test osstest test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 osstest test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd osstest test-amd64-i386-qemut-rhel6hvm-intel all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-intel @@ -8010,6 +8016,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm arch amd64 osstest test-amd64-amd64-libvirt-vhd arch amd64 osstest test-amd64-amd64-libvirt-xsm arch amd64 +osstest test-amd64-amd64-livepatch arch amd64 osstest test-amd64-amd64-pair arch amd64 osstest test-amd64-amd64-pygrub arch amd64 osstest test-amd64-amd64-qemuu-nested-amd arch amd64 @@ -8039,6 +8046,7 @@ osstest test-amd64-i386-libvirt-pair arch i386 osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm arch i386 osstest test-amd64-i386-libvirt-xsm arch i386 +osstest test-amd64-i386-livepatch arch i386 osstest test-amd64-i386-pair arch i386 osstest test-amd64-i386-qemut-rhel6hvm-amd arch i386 osstest test-amd64-i386-qemut-rhel6hvm-intel arch i386 @@ -8118,6 +8126,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-amd64-xsm osstest test-amd64-amd64-libvirt-vhd buildjob build-amd64 osstest test-amd64-amd64-libvirt-xsm buildjob build-amd64-xsm +osstest test-amd64-amd64-livepatch buildjob build-amd64 osstest test-amd64-amd64-pair buildjob build-amd64 osstest test-amd64-amd64-pygrub buildjob build-amd64 osstest test-amd64-amd64-qemuu-nested-amd buildjob build-amd64 @@ -8147,6 +8156,7 @@ osstest test-amd64-i386-libvirt-pair buildjob build-i386 osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-i386-xsm osstest test-amd64-i386-libvirt-xsm buildjob build-i386-xsm +osstest test-amd64-i386-livepatch buildjob build-i386 osstest test-amd64-i386-pair buildjob build-i386 osstest test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 osstest test-amd64-i386-qemut-rhel6hvm-intel buildjob build-i386 @@ -8480,6 +8490,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-amd64-pvops osstest test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops osstest test-amd64-amd64-libvirt-xsm kernbuildjob build-amd64-pvops +osstest test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops osstest test-amd64-amd64-pair kernbuildjob build-amd64-pvops osstest test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops osstest test-amd64-amd64-qemuu-nested-amd kernbuildjob build-amd64-pvops @@ -8509,6 +8520,7 @@ osstest test-amd64-i386-libvirt-pair kernbuildjob build-i386-pvops osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-i386-pvops osstest test-amd64-i386-libvirt-xsm kernbuildjob build-i386-pvops +osstest test-amd64-i386-livepatch kernbuildjob build-i386-pvops osstest test-amd64-i386-pair kernbuildjob build-i386-pvops osstest test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops osstest test-amd64-i386-qemut-rhel6hvm-intel kernbuildjob build-i386-pvops @@ -8552,6 +8564,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops osstest test-amd64-amd64-libvirt-vhd kernkind pvops osstest test-amd64-amd64-libvirt-xsm kernkind pvops +osstest test-amd64-amd64-livepatch kernkind pvops osstest test-amd64-amd64-pair kernkind pvops osstest test-amd64-amd64-pygrub kernkind pvops osstest test-amd64-amd64-qemuu-nested-amd kernkind pvops @@ -8581,6 +8594,7 @@ osstest test-amd64-i386-libvirt-pair kernkind pvops osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops osstest test-amd64-i386-libvirt-xsm kernkind pvops +osstest test-amd64-i386-livepatch kernkind pvops osstest test-amd64-i386-pair kernkind pvops osstest test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops osstest test-amd64-i386-qemut-rhel6hvm-intel kernkind pvops @@ -8707,6 +8721,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt osstest test-amd64-amd64-libvirt-vhd toolstack libvirt osstest test-amd64-amd64-libvirt-xsm toolstack libvirt +osstest test-amd64-amd64-livepatch toolstack xl osstest test-amd64-amd64-pair toolstack xl osstest test-amd64-amd64-pygrub toolstack xl osstest test-amd64-amd64-qemuu-nested-amd toolstack xl @@ -8736,6 +8751,7 @@ osstest test-amd64-i386-libvirt-pair toolstack libvirt osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt osstest test-amd64-i386-libvirt-xsm toolstack libvirt +osstest test-amd64-i386-livepatch toolstack xl osstest test-amd64-i386-pair toolstack xl osstest test-amd64-i386-qemut-rhel6hvm-amd toolstack xl osstest test-amd64-i386-qemut-rhel6hvm-intel toolstack xl @@ -8854,8 +8870,10 @@ osstest test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso osstest test-amd64-i386-xl-qemuu-winxpsp3 win_image winxpsp3.iso osstest test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +osstest test-amd64-amd64-livepatch xen_boot_append loglvl=all osstest test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 osstest test-amd64-amd64-xl-rtds xen_boot_append sched=rtds +osstest test-amd64-i386-livepatch xen_boot_append loglvl=all osstest test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 osstest test-armhf-armhf-xl-rtds xen_boot_append sched=rtds osstest test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -8870,6 +8888,7 @@ osstest test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm osstest test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 osstest test-amd64-amd64-libvirt-xsm xenbuildjob build-amd64-xsm +osstest test-amd64-amd64-livepatch xenbuildjob build-amd64 osstest test-amd64-amd64-pair xenbuildjob build-amd64 osstest test-amd64-amd64-pygrub xenbuildjob build-amd64 osstest test-amd64-amd64-qemuu-nested-amd xenbuildjob build-amd64 @@ -8899,6 +8918,7 @@ osstest test-amd64-i386-libvirt-pair xenbuildjob build-amd64 osstest test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm osstest test-amd64-i386-libvirt-xsm xenbuildjob build-amd64-xsm +osstest test-amd64-i386-livepatch xenbuildjob build-amd64 osstest test-amd64-i386-pair xenbuildjob build-amd64 osstest test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 osstest test-amd64-i386-qemut-rhel6hvm-intel xenbuildjob build-amd64 @@ -16002,6 +16022,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub all_host_di_version current xen-4.0-testing test-amd64-amd64-libvirt all_host_di_version current xen-4.0-testing test-amd64-amd64-libvirt-vhd all_host_di_version current +xen-4.0-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.0-testing test-amd64-amd64-pair all_host_di_version current xen-4.0-testing test-amd64-amd64-pv all_host_di_version current xen-4.0-testing test-amd64-amd64-pygrub all_host_di_version current @@ -16016,6 +16037,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 all_host_di_version current xen-4.0-testing test-amd64-amd64-xl-winxpsp3 all_host_di_version current xen-4.0-testing test-amd64-i386-libvirt all_host_di_version current +xen-4.0-testing test-amd64-i386-livepatch all_host_di_version current xen-4.0-testing test-amd64-i386-pair all_host_di_version current xen-4.0-testing test-amd64-i386-pv all_host_di_version current xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -16035,6 +16057,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 all_host_di_version current xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_host_di_version current xen-4.0-testing test-i386-i386-libvirt all_host_di_version current +xen-4.0-testing test-i386-i386-livepatch all_host_di_version current xen-4.0-testing test-i386-i386-pair all_host_di_version current xen-4.0-testing test-i386-i386-pv all_host_di_version current xen-4.0-testing test-i386-i386-rumprun-i386 all_host_di_version current @@ -16062,6 +16085,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub all_host_suite wheezy xen-4.0-testing test-amd64-amd64-libvirt all_host_suite wheezy xen-4.0-testing test-amd64-amd64-libvirt-vhd all_host_suite wheezy +xen-4.0-testing test-amd64-amd64-livepatch all_host_suite wheezy xen-4.0-testing test-amd64-amd64-pair all_host_suite wheezy xen-4.0-testing test-amd64-amd64-pv all_host_suite wheezy xen-4.0-testing test-amd64-amd64-pygrub all_host_suite wheezy @@ -16076,6 +16100,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 all_host_suite wheezy xen-4.0-testing test-amd64-amd64-xl-winxpsp3 all_host_suite wheezy xen-4.0-testing test-amd64-i386-libvirt all_host_suite wheezy +xen-4.0-testing test-amd64-i386-livepatch all_host_suite wheezy xen-4.0-testing test-amd64-i386-pair all_host_suite wheezy xen-4.0-testing test-amd64-i386-pv all_host_suite wheezy xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite wheezy @@ -16095,6 +16120,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 all_host_suite wheezy xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_host_suite wheezy xen-4.0-testing test-i386-i386-libvirt all_host_suite wheezy +xen-4.0-testing test-i386-i386-livepatch all_host_suite wheezy xen-4.0-testing test-i386-i386-pair all_host_suite wheezy xen-4.0-testing test-i386-i386-pv all_host_suite wheezy xen-4.0-testing test-i386-i386-rumprun-i386 all_host_suite wheezy @@ -16113,6 +16139,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.0-testing test-amd64-amd64-libvirt all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.0-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.0-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.0-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.0-testing test-amd64-amd64-pv all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.0-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test @@ -16127,6 +16154,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.0-testing test-amd64-amd64-xl-winxpsp3 all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.0-testing test-amd64-i386-libvirt all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.0-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.0-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.0-testing test-amd64-i386-pv all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm-amd @@ -16146,6 +16174,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.0-testing test-i386-i386-libvirt all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test +xen-4.0-testing test-i386-i386-livepatch all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test xen-4.0-testing test-i386-i386-pair all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test,equiv-1 xen-4.0-testing test-i386-i386-pv all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test xen-4.0-testing test-i386-i386-rumprun-i386 all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test @@ -16173,6 +16202,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub arch amd64 xen-4.0-testing test-amd64-amd64-libvirt arch amd64 xen-4.0-testing test-amd64-amd64-libvirt-vhd arch amd64 +xen-4.0-testing test-amd64-amd64-livepatch arch amd64 xen-4.0-testing test-amd64-amd64-pair arch amd64 xen-4.0-testing test-amd64-amd64-pv arch amd64 xen-4.0-testing test-amd64-amd64-pygrub arch amd64 @@ -16187,6 +16217,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 arch amd64 xen-4.0-testing test-amd64-amd64-xl-winxpsp3 arch amd64 xen-4.0-testing test-amd64-i386-libvirt arch i386 +xen-4.0-testing test-amd64-i386-livepatch arch i386 xen-4.0-testing test-amd64-i386-pair arch i386 xen-4.0-testing test-amd64-i386-pv arch i386 xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -16206,6 +16237,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 arch i386 xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 arch i386 xen-4.0-testing test-i386-i386-libvirt arch i386 +xen-4.0-testing test-i386-i386-livepatch arch i386 xen-4.0-testing test-i386-i386-pair arch i386 xen-4.0-testing test-i386-i386-pv arch i386 xen-4.0-testing test-i386-i386-rumprun-i386 arch i386 @@ -16239,6 +16271,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub buildjob build-amd64 xen-4.0-testing test-amd64-amd64-libvirt buildjob build-amd64 xen-4.0-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 +xen-4.0-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.0-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.0-testing test-amd64-amd64-pv buildjob build-amd64 xen-4.0-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -16253,6 +16286,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 buildjob build-amd64 xen-4.0-testing test-amd64-amd64-xl-winxpsp3 buildjob build-amd64 xen-4.0-testing test-amd64-i386-libvirt buildjob build-i386 +xen-4.0-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.0-testing test-amd64-i386-pair buildjob build-i386 xen-4.0-testing test-amd64-i386-pv buildjob build-i386 xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -16272,6 +16306,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 buildjob build-i386 xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 buildjob build-i386 xen-4.0-testing test-i386-i386-libvirt buildjob build-i386 +xen-4.0-testing test-i386-i386-livepatch buildjob build-i386 xen-4.0-testing test-i386-i386-pair buildjob build-i386 xen-4.0-testing test-i386-i386-pv buildjob build-i386 xen-4.0-testing test-i386-i386-rumprun-i386 buildjob build-i386 @@ -16433,6 +16468,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub kernbuildjob build-amd64-pvops xen-4.0-testing test-amd64-amd64-libvirt kernbuildjob build-amd64-pvops xen-4.0-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops +xen-4.0-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.0-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.0-testing test-amd64-amd64-pv kernbuildjob build-amd64-pvops xen-4.0-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -16447,6 +16483,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 kernbuildjob build-amd64-pvops xen-4.0-testing test-amd64-amd64-xl-winxpsp3 kernbuildjob build-amd64-pvops xen-4.0-testing test-amd64-i386-libvirt kernbuildjob build-i386-pvops +xen-4.0-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.0-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.0-testing test-amd64-i386-pv kernbuildjob build-i386-pvops xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -16466,6 +16503,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 kernbuildjob build-i386-pvops xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 kernbuildjob build-i386-pvops xen-4.0-testing test-i386-i386-libvirt kernbuildjob build-i386-pvops +xen-4.0-testing test-i386-i386-livepatch kernbuildjob build-i386-pvops xen-4.0-testing test-i386-i386-pair kernbuildjob build-i386-pvops xen-4.0-testing test-i386-i386-pv kernbuildjob build-i386-pvops xen-4.0-testing test-i386-i386-rumprun-i386 kernbuildjob build-i386-pvops @@ -16484,6 +16522,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub kernkind pvops xen-4.0-testing test-amd64-amd64-libvirt kernkind pvops xen-4.0-testing test-amd64-amd64-libvirt-vhd kernkind pvops +xen-4.0-testing test-amd64-amd64-livepatch kernkind pvops xen-4.0-testing test-amd64-amd64-pair kernkind pvops xen-4.0-testing test-amd64-amd64-pv kernkind pvops xen-4.0-testing test-amd64-amd64-pygrub kernkind pvops @@ -16498,6 +16537,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 kernkind pvops xen-4.0-testing test-amd64-amd64-xl-winxpsp3 kernkind pvops xen-4.0-testing test-amd64-i386-libvirt kernkind pvops +xen-4.0-testing test-amd64-i386-livepatch kernkind pvops xen-4.0-testing test-amd64-i386-pair kernkind pvops xen-4.0-testing test-amd64-i386-pv kernkind pvops xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -16517,6 +16557,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 kernkind pvops xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 kernkind pvops xen-4.0-testing test-i386-i386-libvirt kernkind pvops +xen-4.0-testing test-i386-i386-livepatch kernkind pvops xen-4.0-testing test-i386-i386-pair kernkind pvops xen-4.0-testing test-i386-i386-pv kernkind pvops xen-4.0-testing test-i386-i386-rumprun-i386 kernkind pvops @@ -16570,6 +16611,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub toolstack xl xen-4.0-testing test-amd64-amd64-libvirt toolstack libvirt xen-4.0-testing test-amd64-amd64-libvirt-vhd toolstack libvirt +xen-4.0-testing test-amd64-amd64-livepatch toolstack xl xen-4.0-testing test-amd64-amd64-pair toolstack xend xen-4.0-testing test-amd64-amd64-pv toolstack xend xen-4.0-testing test-amd64-amd64-pygrub toolstack xl @@ -16584,6 +16626,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 toolstack xl xen-4.0-testing test-amd64-amd64-xl-winxpsp3 toolstack xl xen-4.0-testing test-amd64-i386-libvirt toolstack libvirt +xen-4.0-testing test-amd64-i386-livepatch toolstack xl xen-4.0-testing test-amd64-i386-pair toolstack xend xen-4.0-testing test-amd64-i386-pv toolstack xend xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -16603,6 +16646,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 toolstack xl xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 toolstack xl xen-4.0-testing test-i386-i386-libvirt toolstack libvirt +xen-4.0-testing test-i386-i386-livepatch toolstack xl xen-4.0-testing test-i386-i386-pair toolstack xend xen-4.0-testing test-i386-i386-pv toolstack xend xen-4.0-testing test-i386-i386-rumprun-i386 toolstack xl @@ -16674,7 +16718,10 @@ xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 win_image winxpsp3.iso xen-4.0-testing test-i386-i386-xl-qemut-winxpsp3 win_image winxpsp3.iso xen-4.0-testing test-i386-i386-xl-winxpsp3 win_image winxpsp3.iso +xen-4.0-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.0-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 +xen-4.0-testing test-amd64-i386-livepatch xen_boot_append loglvl=all +xen-4.0-testing test-i386-i386-livepatch xen_boot_append loglvl=all xen-4.0-testing test-i386-i386-xl-credit2 xen_boot_append sched=credit2 xen-4.0-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all xen-4.0-testing test-xtf-amd64-amd64-2 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -16685,6 +16732,7 @@ xen-4.0-testing test-amd64-amd64-i386-pvgrub xenbuildjob build-amd64 xen-4.0-testing test-amd64-amd64-libvirt xenbuildjob build-amd64 xen-4.0-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 +xen-4.0-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.0-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.0-testing test-amd64-amd64-pv xenbuildjob build-amd64 xen-4.0-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -16699,6 +16747,7 @@ xen-4.0-testing test-amd64-amd64-xl-win7-amd64 xenbuildjob build-amd64 xen-4.0-testing test-amd64-amd64-xl-winxpsp3 xenbuildjob build-amd64 xen-4.0-testing test-amd64-i386-libvirt xenbuildjob build-amd64 +xen-4.0-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.0-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.0-testing test-amd64-i386-pv xenbuildjob build-amd64 xen-4.0-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -16718,6 +16767,7 @@ xen-4.0-testing test-amd64-i386-xl-win7-amd64 xenbuildjob build-amd64 xen-4.0-testing test-amd64-i386-xl-winxpsp3-vcpus1 xenbuildjob build-amd64 xen-4.0-testing test-i386-i386-libvirt xenbuildjob build-i386 +xen-4.0-testing test-i386-i386-livepatch xenbuildjob build-i386 xen-4.0-testing test-i386-i386-pair xenbuildjob build-i386 xen-4.0-testing test-i386-i386-pv xenbuildjob build-i386 xen-4.0-testing test-i386-i386-rumprun-i386 xenbuildjob build-i386 @@ -16756,6 +16806,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub all_host_di_version current xen-4.1-testing test-amd64-amd64-libvirt all_host_di_version current xen-4.1-testing test-amd64-amd64-libvirt-vhd all_host_di_version current +xen-4.1-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.1-testing test-amd64-amd64-pair all_host_di_version current xen-4.1-testing test-amd64-amd64-pv all_host_di_version current xen-4.1-testing test-amd64-amd64-pygrub all_host_di_version current @@ -16770,6 +16821,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 all_host_di_version current xen-4.1-testing test-amd64-amd64-xl-winxpsp3 all_host_di_version current xen-4.1-testing test-amd64-i386-libvirt all_host_di_version current +xen-4.1-testing test-amd64-i386-livepatch all_host_di_version current xen-4.1-testing test-amd64-i386-pair all_host_di_version current xen-4.1-testing test-amd64-i386-pv all_host_di_version current xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -16789,6 +16841,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 all_host_di_version current xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_host_di_version current xen-4.1-testing test-i386-i386-libvirt all_host_di_version current +xen-4.1-testing test-i386-i386-livepatch all_host_di_version current xen-4.1-testing test-i386-i386-pair all_host_di_version current xen-4.1-testing test-i386-i386-pv all_host_di_version current xen-4.1-testing test-i386-i386-rumprun-i386 all_host_di_version current @@ -16816,6 +16869,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub all_host_suite wheezy xen-4.1-testing test-amd64-amd64-libvirt all_host_suite wheezy xen-4.1-testing test-amd64-amd64-libvirt-vhd all_host_suite wheezy +xen-4.1-testing test-amd64-amd64-livepatch all_host_suite wheezy xen-4.1-testing test-amd64-amd64-pair all_host_suite wheezy xen-4.1-testing test-amd64-amd64-pv all_host_suite wheezy xen-4.1-testing test-amd64-amd64-pygrub all_host_suite wheezy @@ -16830,6 +16884,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 all_host_suite wheezy xen-4.1-testing test-amd64-amd64-xl-winxpsp3 all_host_suite wheezy xen-4.1-testing test-amd64-i386-libvirt all_host_suite wheezy +xen-4.1-testing test-amd64-i386-livepatch all_host_suite wheezy xen-4.1-testing test-amd64-i386-pair all_host_suite wheezy xen-4.1-testing test-amd64-i386-pv all_host_suite wheezy xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite wheezy @@ -16849,6 +16904,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 all_host_suite wheezy xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_host_suite wheezy xen-4.1-testing test-i386-i386-libvirt all_host_suite wheezy +xen-4.1-testing test-i386-i386-livepatch all_host_suite wheezy xen-4.1-testing test-i386-i386-pair all_host_suite wheezy xen-4.1-testing test-i386-i386-pv all_host_suite wheezy xen-4.1-testing test-i386-i386-rumprun-i386 all_host_suite wheezy @@ -16867,6 +16923,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.1-testing test-amd64-amd64-libvirt all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.1-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.1-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.1-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.1-testing test-amd64-amd64-pv all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.1-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test @@ -16881,6 +16938,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.1-testing test-amd64-amd64-xl-winxpsp3 all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.1-testing test-amd64-i386-libvirt all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.1-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.1-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.1-testing test-amd64-i386-pv all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm-amd @@ -16900,6 +16958,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.1-testing test-i386-i386-libvirt all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test +xen-4.1-testing test-i386-i386-livepatch all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test xen-4.1-testing test-i386-i386-pair all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test,equiv-1 xen-4.1-testing test-i386-i386-pv all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test xen-4.1-testing test-i386-i386-rumprun-i386 all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test @@ -16927,6 +16986,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub arch amd64 xen-4.1-testing test-amd64-amd64-libvirt arch amd64 xen-4.1-testing test-amd64-amd64-libvirt-vhd arch amd64 +xen-4.1-testing test-amd64-amd64-livepatch arch amd64 xen-4.1-testing test-amd64-amd64-pair arch amd64 xen-4.1-testing test-amd64-amd64-pv arch amd64 xen-4.1-testing test-amd64-amd64-pygrub arch amd64 @@ -16941,6 +17001,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 arch amd64 xen-4.1-testing test-amd64-amd64-xl-winxpsp3 arch amd64 xen-4.1-testing test-amd64-i386-libvirt arch i386 +xen-4.1-testing test-amd64-i386-livepatch arch i386 xen-4.1-testing test-amd64-i386-pair arch i386 xen-4.1-testing test-amd64-i386-pv arch i386 xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -16960,6 +17021,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 arch i386 xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 arch i386 xen-4.1-testing test-i386-i386-libvirt arch i386 +xen-4.1-testing test-i386-i386-livepatch arch i386 xen-4.1-testing test-i386-i386-pair arch i386 xen-4.1-testing test-i386-i386-pv arch i386 xen-4.1-testing test-i386-i386-rumprun-i386 arch i386 @@ -16993,6 +17055,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub buildjob build-amd64 xen-4.1-testing test-amd64-amd64-libvirt buildjob build-amd64 xen-4.1-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 +xen-4.1-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.1-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.1-testing test-amd64-amd64-pv buildjob build-amd64 xen-4.1-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -17007,6 +17070,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 buildjob build-amd64 xen-4.1-testing test-amd64-amd64-xl-winxpsp3 buildjob build-amd64 xen-4.1-testing test-amd64-i386-libvirt buildjob build-i386 +xen-4.1-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.1-testing test-amd64-i386-pair buildjob build-i386 xen-4.1-testing test-amd64-i386-pv buildjob build-i386 xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -17026,6 +17090,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 buildjob build-i386 xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 buildjob build-i386 xen-4.1-testing test-i386-i386-libvirt buildjob build-i386 +xen-4.1-testing test-i386-i386-livepatch buildjob build-i386 xen-4.1-testing test-i386-i386-pair buildjob build-i386 xen-4.1-testing test-i386-i386-pv buildjob build-i386 xen-4.1-testing test-i386-i386-rumprun-i386 buildjob build-i386 @@ -17187,6 +17252,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub kernbuildjob build-amd64-pvops xen-4.1-testing test-amd64-amd64-libvirt kernbuildjob build-amd64-pvops xen-4.1-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops +xen-4.1-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.1-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.1-testing test-amd64-amd64-pv kernbuildjob build-amd64-pvops xen-4.1-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -17201,6 +17267,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 kernbuildjob build-amd64-pvops xen-4.1-testing test-amd64-amd64-xl-winxpsp3 kernbuildjob build-amd64-pvops xen-4.1-testing test-amd64-i386-libvirt kernbuildjob build-i386-pvops +xen-4.1-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.1-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.1-testing test-amd64-i386-pv kernbuildjob build-i386-pvops xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -17220,6 +17287,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 kernbuildjob build-i386-pvops xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 kernbuildjob build-i386-pvops xen-4.1-testing test-i386-i386-libvirt kernbuildjob build-i386-pvops +xen-4.1-testing test-i386-i386-livepatch kernbuildjob build-i386-pvops xen-4.1-testing test-i386-i386-pair kernbuildjob build-i386-pvops xen-4.1-testing test-i386-i386-pv kernbuildjob build-i386-pvops xen-4.1-testing test-i386-i386-rumprun-i386 kernbuildjob build-i386-pvops @@ -17238,6 +17306,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub kernkind pvops xen-4.1-testing test-amd64-amd64-libvirt kernkind pvops xen-4.1-testing test-amd64-amd64-libvirt-vhd kernkind pvops +xen-4.1-testing test-amd64-amd64-livepatch kernkind pvops xen-4.1-testing test-amd64-amd64-pair kernkind pvops xen-4.1-testing test-amd64-amd64-pv kernkind pvops xen-4.1-testing test-amd64-amd64-pygrub kernkind pvops @@ -17252,6 +17321,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 kernkind pvops xen-4.1-testing test-amd64-amd64-xl-winxpsp3 kernkind pvops xen-4.1-testing test-amd64-i386-libvirt kernkind pvops +xen-4.1-testing test-amd64-i386-livepatch kernkind pvops xen-4.1-testing test-amd64-i386-pair kernkind pvops xen-4.1-testing test-amd64-i386-pv kernkind pvops xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -17271,6 +17341,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 kernkind pvops xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 kernkind pvops xen-4.1-testing test-i386-i386-libvirt kernkind pvops +xen-4.1-testing test-i386-i386-livepatch kernkind pvops xen-4.1-testing test-i386-i386-pair kernkind pvops xen-4.1-testing test-i386-i386-pv kernkind pvops xen-4.1-testing test-i386-i386-rumprun-i386 kernkind pvops @@ -17324,6 +17395,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub toolstack xl xen-4.1-testing test-amd64-amd64-libvirt toolstack libvirt xen-4.1-testing test-amd64-amd64-libvirt-vhd toolstack libvirt +xen-4.1-testing test-amd64-amd64-livepatch toolstack xl xen-4.1-testing test-amd64-amd64-pair toolstack xend xen-4.1-testing test-amd64-amd64-pv toolstack xend xen-4.1-testing test-amd64-amd64-pygrub toolstack xl @@ -17338,6 +17410,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 toolstack xl xen-4.1-testing test-amd64-amd64-xl-winxpsp3 toolstack xl xen-4.1-testing test-amd64-i386-libvirt toolstack libvirt +xen-4.1-testing test-amd64-i386-livepatch toolstack xl xen-4.1-testing test-amd64-i386-pair toolstack xend xen-4.1-testing test-amd64-i386-pv toolstack xend xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -17357,6 +17430,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 toolstack xl xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 toolstack xl xen-4.1-testing test-i386-i386-libvirt toolstack libvirt +xen-4.1-testing test-i386-i386-livepatch toolstack xl xen-4.1-testing test-i386-i386-pair toolstack xend xen-4.1-testing test-i386-i386-pv toolstack xend xen-4.1-testing test-i386-i386-rumprun-i386 toolstack xl @@ -17428,7 +17502,10 @@ xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 win_image winxpsp3.iso xen-4.1-testing test-i386-i386-xl-qemut-winxpsp3 win_image winxpsp3.iso xen-4.1-testing test-i386-i386-xl-winxpsp3 win_image winxpsp3.iso +xen-4.1-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.1-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 +xen-4.1-testing test-amd64-i386-livepatch xen_boot_append loglvl=all +xen-4.1-testing test-i386-i386-livepatch xen_boot_append loglvl=all xen-4.1-testing test-i386-i386-xl-credit2 xen_boot_append sched=credit2 xen-4.1-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all xen-4.1-testing test-xtf-amd64-amd64-2 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -17439,6 +17516,7 @@ xen-4.1-testing test-amd64-amd64-i386-pvgrub xenbuildjob build-amd64 xen-4.1-testing test-amd64-amd64-libvirt xenbuildjob build-amd64 xen-4.1-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 +xen-4.1-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.1-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.1-testing test-amd64-amd64-pv xenbuildjob build-amd64 xen-4.1-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -17453,6 +17531,7 @@ xen-4.1-testing test-amd64-amd64-xl-win7-amd64 xenbuildjob build-amd64 xen-4.1-testing test-amd64-amd64-xl-winxpsp3 xenbuildjob build-amd64 xen-4.1-testing test-amd64-i386-libvirt xenbuildjob build-amd64 +xen-4.1-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.1-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.1-testing test-amd64-i386-pv xenbuildjob build-amd64 xen-4.1-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -17472,6 +17551,7 @@ xen-4.1-testing test-amd64-i386-xl-win7-amd64 xenbuildjob build-amd64 xen-4.1-testing test-amd64-i386-xl-winxpsp3-vcpus1 xenbuildjob build-amd64 xen-4.1-testing test-i386-i386-libvirt xenbuildjob build-i386 +xen-4.1-testing test-i386-i386-livepatch xenbuildjob build-i386 xen-4.1-testing test-i386-i386-pair xenbuildjob build-i386 xen-4.1-testing test-i386-i386-pv xenbuildjob build-i386 xen-4.1-testing test-i386-i386-rumprun-i386 xenbuildjob build-i386 @@ -17510,6 +17590,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub all_host_di_version current xen-4.2-testing test-amd64-amd64-libvirt all_host_di_version current xen-4.2-testing test-amd64-amd64-libvirt-vhd all_host_di_version current +xen-4.2-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.2-testing test-amd64-amd64-pair all_host_di_version current xen-4.2-testing test-amd64-amd64-pv all_host_di_version current xen-4.2-testing test-amd64-amd64-pygrub all_host_di_version current @@ -17528,6 +17609,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 all_host_di_version current xen-4.2-testing test-amd64-amd64-xl-winxpsp3 all_host_di_version current xen-4.2-testing test-amd64-i386-libvirt all_host_di_version current +xen-4.2-testing test-amd64-i386-livepatch all_host_di_version current xen-4.2-testing test-amd64-i386-pair all_host_di_version current xen-4.2-testing test-amd64-i386-pv all_host_di_version current xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -17553,6 +17635,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 all_host_di_version current xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_host_di_version current xen-4.2-testing test-i386-i386-libvirt all_host_di_version current +xen-4.2-testing test-i386-i386-livepatch all_host_di_version current xen-4.2-testing test-i386-i386-pair all_host_di_version current xen-4.2-testing test-i386-i386-pv all_host_di_version current xen-4.2-testing test-i386-i386-rumprun-i386 all_host_di_version current @@ -17581,6 +17664,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub all_host_suite wheezy xen-4.2-testing test-amd64-amd64-libvirt all_host_suite wheezy xen-4.2-testing test-amd64-amd64-libvirt-vhd all_host_suite wheezy +xen-4.2-testing test-amd64-amd64-livepatch all_host_suite wheezy xen-4.2-testing test-amd64-amd64-pair all_host_suite wheezy xen-4.2-testing test-amd64-amd64-pv all_host_suite wheezy xen-4.2-testing test-amd64-amd64-pygrub all_host_suite wheezy @@ -17599,6 +17683,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 all_host_suite wheezy xen-4.2-testing test-amd64-amd64-xl-winxpsp3 all_host_suite wheezy xen-4.2-testing test-amd64-i386-libvirt all_host_suite wheezy +xen-4.2-testing test-amd64-i386-livepatch all_host_suite wheezy xen-4.2-testing test-amd64-i386-pair all_host_suite wheezy xen-4.2-testing test-amd64-i386-pv all_host_suite wheezy xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite wheezy @@ -17624,6 +17709,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 all_host_suite wheezy xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_host_suite wheezy xen-4.2-testing test-i386-i386-libvirt all_host_suite wheezy +xen-4.2-testing test-i386-i386-livepatch all_host_suite wheezy xen-4.2-testing test-i386-i386-pair all_host_suite wheezy xen-4.2-testing test-i386-i386-pv all_host_suite wheezy xen-4.2-testing test-i386-i386-rumprun-i386 all_host_suite wheezy @@ -17643,6 +17729,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.2-testing test-amd64-amd64-libvirt all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.2-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.2-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.2-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.2-testing test-amd64-amd64-pv all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.2-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test @@ -17661,6 +17748,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.2-testing test-amd64-amd64-xl-winxpsp3 all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.2-testing test-amd64-i386-libvirt all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.2-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.2-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.2-testing test-amd64-i386-pv all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm-amd @@ -17686,6 +17774,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm xen-4.2-testing test-i386-i386-libvirt all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test +xen-4.2-testing test-i386-i386-livepatch all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test xen-4.2-testing test-i386-i386-pair all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test,equiv-1 xen-4.2-testing test-i386-i386-pv all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test xen-4.2-testing test-i386-i386-rumprun-i386 all_hostflags arch-i386,arch-xen-i386,suite-wheezy,purpose-test @@ -17714,6 +17803,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub arch amd64 xen-4.2-testing test-amd64-amd64-libvirt arch amd64 xen-4.2-testing test-amd64-amd64-libvirt-vhd arch amd64 +xen-4.2-testing test-amd64-amd64-livepatch arch amd64 xen-4.2-testing test-amd64-amd64-pair arch amd64 xen-4.2-testing test-amd64-amd64-pv arch amd64 xen-4.2-testing test-amd64-amd64-pygrub arch amd64 @@ -17732,6 +17822,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 arch amd64 xen-4.2-testing test-amd64-amd64-xl-winxpsp3 arch amd64 xen-4.2-testing test-amd64-i386-libvirt arch i386 +xen-4.2-testing test-amd64-i386-livepatch arch i386 xen-4.2-testing test-amd64-i386-pair arch i386 xen-4.2-testing test-amd64-i386-pv arch i386 xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -17757,6 +17848,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 arch i386 xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 arch i386 xen-4.2-testing test-i386-i386-libvirt arch i386 +xen-4.2-testing test-i386-i386-livepatch arch i386 xen-4.2-testing test-i386-i386-pair arch i386 xen-4.2-testing test-i386-i386-pv arch i386 xen-4.2-testing test-i386-i386-rumprun-i386 arch i386 @@ -17795,6 +17887,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub buildjob build-amd64 xen-4.2-testing test-amd64-amd64-libvirt buildjob build-amd64 xen-4.2-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 +xen-4.2-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.2-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.2-testing test-amd64-amd64-pv buildjob build-amd64 xen-4.2-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -17813,6 +17906,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 buildjob build-amd64 xen-4.2-testing test-amd64-amd64-xl-winxpsp3 buildjob build-amd64 xen-4.2-testing test-amd64-i386-libvirt buildjob build-i386 +xen-4.2-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.2-testing test-amd64-i386-pair buildjob build-i386 xen-4.2-testing test-amd64-i386-pv buildjob build-i386 xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -17838,6 +17932,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 buildjob build-i386 xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 buildjob build-i386 xen-4.2-testing test-i386-i386-libvirt buildjob build-i386 +xen-4.2-testing test-i386-i386-livepatch buildjob build-i386 xen-4.2-testing test-i386-i386-pair buildjob build-i386 xen-4.2-testing test-i386-i386-pv buildjob build-i386 xen-4.2-testing test-i386-i386-rumprun-i386 buildjob build-i386 @@ -18032,6 +18127,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub kernbuildjob build-amd64-pvops xen-4.2-testing test-amd64-amd64-libvirt kernbuildjob build-amd64-pvops xen-4.2-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops +xen-4.2-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.2-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.2-testing test-amd64-amd64-pv kernbuildjob build-amd64-pvops xen-4.2-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -18050,6 +18146,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 kernbuildjob build-amd64-pvops xen-4.2-testing test-amd64-amd64-xl-winxpsp3 kernbuildjob build-amd64-pvops xen-4.2-testing test-amd64-i386-libvirt kernbuildjob build-i386-pvops +xen-4.2-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.2-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.2-testing test-amd64-i386-pv kernbuildjob build-i386-pvops xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -18075,6 +18172,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 kernbuildjob build-i386-pvops xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 kernbuildjob build-i386-pvops xen-4.2-testing test-i386-i386-libvirt kernbuildjob build-i386-pvops +xen-4.2-testing test-i386-i386-livepatch kernbuildjob build-i386-pvops xen-4.2-testing test-i386-i386-pair kernbuildjob build-i386-pvops xen-4.2-testing test-i386-i386-pv kernbuildjob build-i386-pvops xen-4.2-testing test-i386-i386-rumprun-i386 kernbuildjob build-i386-pvops @@ -18094,6 +18192,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub kernkind pvops xen-4.2-testing test-amd64-amd64-libvirt kernkind pvops xen-4.2-testing test-amd64-amd64-libvirt-vhd kernkind pvops +xen-4.2-testing test-amd64-amd64-livepatch kernkind pvops xen-4.2-testing test-amd64-amd64-pair kernkind pvops xen-4.2-testing test-amd64-amd64-pv kernkind pvops xen-4.2-testing test-amd64-amd64-pygrub kernkind pvops @@ -18112,6 +18211,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 kernkind pvops xen-4.2-testing test-amd64-amd64-xl-winxpsp3 kernkind pvops xen-4.2-testing test-amd64-i386-libvirt kernkind pvops +xen-4.2-testing test-amd64-i386-livepatch kernkind pvops xen-4.2-testing test-amd64-i386-pair kernkind pvops xen-4.2-testing test-amd64-i386-pv kernkind pvops xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -18137,6 +18237,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 kernkind pvops xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 kernkind pvops xen-4.2-testing test-i386-i386-libvirt kernkind pvops +xen-4.2-testing test-i386-i386-livepatch kernkind pvops xen-4.2-testing test-i386-i386-pair kernkind pvops xen-4.2-testing test-i386-i386-pv kernkind pvops xen-4.2-testing test-i386-i386-rumprun-i386 kernkind pvops @@ -18197,6 +18298,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub toolstack xl xen-4.2-testing test-amd64-amd64-libvirt toolstack libvirt xen-4.2-testing test-amd64-amd64-libvirt-vhd toolstack libvirt +xen-4.2-testing test-amd64-amd64-livepatch toolstack xl xen-4.2-testing test-amd64-amd64-pair toolstack xl xen-4.2-testing test-amd64-amd64-pv toolstack xend xen-4.2-testing test-amd64-amd64-pygrub toolstack xl @@ -18215,6 +18317,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 toolstack xl xen-4.2-testing test-amd64-amd64-xl-winxpsp3 toolstack xl xen-4.2-testing test-amd64-i386-libvirt toolstack libvirt +xen-4.2-testing test-amd64-i386-livepatch toolstack xl xen-4.2-testing test-amd64-i386-pair toolstack xl xen-4.2-testing test-amd64-i386-pv toolstack xend xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -18240,6 +18343,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 toolstack xl xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 toolstack xl xen-4.2-testing test-i386-i386-libvirt toolstack libvirt +xen-4.2-testing test-i386-i386-livepatch toolstack xl xen-4.2-testing test-i386-i386-pair toolstack xl xen-4.2-testing test-i386-i386-pv toolstack xend xen-4.2-testing test-i386-i386-rumprun-i386 toolstack xl @@ -18322,7 +18426,10 @@ xen-4.2-testing test-i386-i386-xl-qemut-winxpsp3 win_image winxpsp3.iso xen-4.2-testing test-i386-i386-xl-qemuu-winxpsp3 win_image winxpsp3.iso xen-4.2-testing test-i386-i386-xl-winxpsp3 win_image winxpsp3.iso +xen-4.2-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.2-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 +xen-4.2-testing test-amd64-i386-livepatch xen_boot_append loglvl=all +xen-4.2-testing test-i386-i386-livepatch xen_boot_append loglvl=all xen-4.2-testing test-i386-i386-xl-credit2 xen_boot_append sched=credit2 xen-4.2-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all xen-4.2-testing test-xtf-amd64-amd64-2 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -18333,6 +18440,7 @@ xen-4.2-testing test-amd64-amd64-i386-pvgrub xenbuildjob build-amd64 xen-4.2-testing test-amd64-amd64-libvirt xenbuildjob build-amd64 xen-4.2-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 +xen-4.2-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.2-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.2-testing test-amd64-amd64-pv xenbuildjob build-amd64 xen-4.2-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -18351,6 +18459,7 @@ xen-4.2-testing test-amd64-amd64-xl-win7-amd64 xenbuildjob build-amd64 xen-4.2-testing test-amd64-amd64-xl-winxpsp3 xenbuildjob build-amd64 xen-4.2-testing test-amd64-i386-libvirt xenbuildjob build-amd64 +xen-4.2-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.2-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.2-testing test-amd64-i386-pv xenbuildjob build-amd64 xen-4.2-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -18376,6 +18485,7 @@ xen-4.2-testing test-amd64-i386-xl-win7-amd64 xenbuildjob build-amd64 xen-4.2-testing test-amd64-i386-xl-winxpsp3-vcpus1 xenbuildjob build-amd64 xen-4.2-testing test-i386-i386-libvirt xenbuildjob build-i386 +xen-4.2-testing test-i386-i386-livepatch xenbuildjob build-i386 xen-4.2-testing test-i386-i386-pair xenbuildjob build-i386 xen-4.2-testing test-i386-i386-pv xenbuildjob build-i386 xen-4.2-testing test-i386-i386-rumprun-i386 xenbuildjob build-i386 @@ -18418,6 +18528,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub all_host_di_version current xen-4.3-testing test-amd64-amd64-libvirt all_host_di_version current xen-4.3-testing test-amd64-amd64-libvirt-vhd all_host_di_version current +xen-4.3-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.3-testing test-amd64-amd64-pair all_host_di_version current xen-4.3-testing test-amd64-amd64-pv all_host_di_version current xen-4.3-testing test-amd64-amd64-pygrub all_host_di_version current @@ -18436,6 +18547,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 all_host_di_version current xen-4.3-testing test-amd64-i386-freebsd10-i386 all_host_di_version current xen-4.3-testing test-amd64-i386-libvirt all_host_di_version current +xen-4.3-testing test-amd64-i386-livepatch all_host_di_version current xen-4.3-testing test-amd64-i386-pair all_host_di_version current xen-4.3-testing test-amd64-i386-pv all_host_di_version current xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -18481,6 +18593,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub all_host_suite wheezy xen-4.3-testing test-amd64-amd64-libvirt all_host_suite wheezy xen-4.3-testing test-amd64-amd64-libvirt-vhd all_host_suite wheezy +xen-4.3-testing test-amd64-amd64-livepatch all_host_suite wheezy xen-4.3-testing test-amd64-amd64-pair all_host_suite wheezy xen-4.3-testing test-amd64-amd64-pv all_host_suite wheezy xen-4.3-testing test-amd64-amd64-pygrub all_host_suite wheezy @@ -18499,6 +18612,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 all_host_suite wheezy xen-4.3-testing test-amd64-i386-freebsd10-i386 all_host_suite wheezy xen-4.3-testing test-amd64-i386-libvirt all_host_suite wheezy +xen-4.3-testing test-amd64-i386-livepatch all_host_suite wheezy xen-4.3-testing test-amd64-i386-pair all_host_suite wheezy xen-4.3-testing test-amd64-i386-pv all_host_suite wheezy xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite wheezy @@ -18532,6 +18646,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-amd64-libvirt all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.3-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.3-testing test-amd64-amd64-pv all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-wheezy,purpose-test @@ -18550,6 +18665,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-i386-freebsd10-i386 all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-i386-libvirt all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test +xen-4.3-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,equiv-1 xen-4.3-testing test-amd64-i386-pv all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-wheezy,purpose-test,hvm-amd @@ -18595,6 +18711,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub arch amd64 xen-4.3-testing test-amd64-amd64-libvirt arch amd64 xen-4.3-testing test-amd64-amd64-libvirt-vhd arch amd64 +xen-4.3-testing test-amd64-amd64-livepatch arch amd64 xen-4.3-testing test-amd64-amd64-pair arch amd64 xen-4.3-testing test-amd64-amd64-pv arch amd64 xen-4.3-testing test-amd64-amd64-pygrub arch amd64 @@ -18613,6 +18730,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 arch i386 xen-4.3-testing test-amd64-i386-freebsd10-i386 arch i386 xen-4.3-testing test-amd64-i386-libvirt arch i386 +xen-4.3-testing test-amd64-i386-livepatch arch i386 xen-4.3-testing test-amd64-i386-pair arch i386 xen-4.3-testing test-amd64-i386-pv arch i386 xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -18669,6 +18787,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub buildjob build-amd64 xen-4.3-testing test-amd64-amd64-libvirt buildjob build-amd64 xen-4.3-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 +xen-4.3-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.3-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.3-testing test-amd64-amd64-pv buildjob build-amd64 xen-4.3-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -18687,6 +18806,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 buildjob build-i386 xen-4.3-testing test-amd64-i386-freebsd10-i386 buildjob build-i386 xen-4.3-testing test-amd64-i386-libvirt buildjob build-i386 +xen-4.3-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.3-testing test-amd64-i386-pair buildjob build-i386 xen-4.3-testing test-amd64-i386-pv buildjob build-i386 xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -18905,6 +19025,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub kernbuildjob build-amd64-pvops xen-4.3-testing test-amd64-amd64-libvirt kernbuildjob build-amd64-pvops xen-4.3-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops +xen-4.3-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.3-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.3-testing test-amd64-amd64-pv kernbuildjob build-amd64-pvops xen-4.3-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -18923,6 +19044,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 kernbuildjob build-i386-pvops xen-4.3-testing test-amd64-i386-freebsd10-i386 kernbuildjob build-i386-pvops xen-4.3-testing test-amd64-i386-libvirt kernbuildjob build-i386-pvops +xen-4.3-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.3-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.3-testing test-amd64-i386-pv kernbuildjob build-i386-pvops xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -18956,6 +19078,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub kernkind pvops xen-4.3-testing test-amd64-amd64-libvirt kernkind pvops xen-4.3-testing test-amd64-amd64-libvirt-vhd kernkind pvops +xen-4.3-testing test-amd64-amd64-livepatch kernkind pvops xen-4.3-testing test-amd64-amd64-pair kernkind pvops xen-4.3-testing test-amd64-amd64-pv kernkind pvops xen-4.3-testing test-amd64-amd64-pygrub kernkind pvops @@ -18974,6 +19097,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 kernkind pvops xen-4.3-testing test-amd64-i386-freebsd10-i386 kernkind pvops xen-4.3-testing test-amd64-i386-libvirt kernkind pvops +xen-4.3-testing test-amd64-i386-livepatch kernkind pvops xen-4.3-testing test-amd64-i386-pair kernkind pvops xen-4.3-testing test-amd64-i386-pv kernkind pvops xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -19055,6 +19179,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub toolstack xl xen-4.3-testing test-amd64-amd64-libvirt toolstack libvirt xen-4.3-testing test-amd64-amd64-libvirt-vhd toolstack libvirt +xen-4.3-testing test-amd64-amd64-livepatch toolstack xl xen-4.3-testing test-amd64-amd64-pair toolstack xl xen-4.3-testing test-amd64-amd64-pv toolstack xend xen-4.3-testing test-amd64-amd64-pygrub toolstack xl @@ -19073,6 +19198,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 toolstack xl xen-4.3-testing test-amd64-i386-freebsd10-i386 toolstack xl xen-4.3-testing test-amd64-i386-libvirt toolstack libvirt +xen-4.3-testing test-amd64-i386-livepatch toolstack xl xen-4.3-testing test-amd64-i386-pair toolstack xl xen-4.3-testing test-amd64-i386-pv toolstack xend xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -19164,7 +19290,9 @@ xen-4.3-testing test-amd64-i386-xl-qemut-winxpsp3-vcpus1 win_image winxpsp3.iso xen-4.3-testing test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso xen-4.3-testing test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +xen-4.3-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.3-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 +xen-4.3-testing test-amd64-i386-livepatch xen_boot_append loglvl=all xen-4.3-testing test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 xen-4.3-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all xen-4.3-testing test-xtf-amd64-amd64-2 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -19175,6 +19303,7 @@ xen-4.3-testing test-amd64-amd64-i386-pvgrub xenbuildjob build-amd64 xen-4.3-testing test-amd64-amd64-libvirt xenbuildjob build-amd64 xen-4.3-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 +xen-4.3-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.3-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.3-testing test-amd64-amd64-pv xenbuildjob build-amd64 xen-4.3-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -19193,6 +19322,7 @@ xen-4.3-testing test-amd64-i386-freebsd10-amd64 xenbuildjob build-amd64 xen-4.3-testing test-amd64-i386-freebsd10-i386 xenbuildjob build-amd64 xen-4.3-testing test-amd64-i386-libvirt xenbuildjob build-amd64 +xen-4.3-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.3-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.3-testing test-amd64-i386-pv xenbuildjob build-amd64 xen-4.3-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -19250,6 +19380,7 @@ xen-4.4-testing test-amd64-amd64-libvirt all_host_di_version current xen-4.4-testing test-amd64-amd64-libvirt-pair all_host_di_version current xen-4.4-testing test-amd64-amd64-libvirt-vhd all_host_di_version current +xen-4.4-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.4-testing test-amd64-amd64-pair all_host_di_version current xen-4.4-testing test-amd64-amd64-pv all_host_di_version current xen-4.4-testing test-amd64-amd64-pygrub all_host_di_version current @@ -19271,6 +19402,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 all_host_di_version current xen-4.4-testing test-amd64-i386-libvirt all_host_di_version current xen-4.4-testing test-amd64-i386-libvirt-pair all_host_di_version current +xen-4.4-testing test-amd64-i386-livepatch all_host_di_version current xen-4.4-testing test-amd64-i386-pair all_host_di_version current xen-4.4-testing test-amd64-i386-pv all_host_di_version current xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -19319,6 +19451,7 @@ xen-4.4-testing test-amd64-amd64-libvirt all_host_suite jessie xen-4.4-testing test-amd64-amd64-libvirt-pair all_host_suite jessie xen-4.4-testing test-amd64-amd64-libvirt-vhd all_host_suite jessie +xen-4.4-testing test-amd64-amd64-livepatch all_host_suite jessie xen-4.4-testing test-amd64-amd64-pair all_host_suite jessie xen-4.4-testing test-amd64-amd64-pv all_host_suite jessie xen-4.4-testing test-amd64-amd64-pygrub all_host_suite jessie @@ -19340,6 +19473,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 all_host_suite jessie xen-4.4-testing test-amd64-i386-libvirt all_host_suite jessie xen-4.4-testing test-amd64-i386-libvirt-pair all_host_suite jessie +xen-4.4-testing test-amd64-i386-livepatch all_host_suite jessie xen-4.4-testing test-amd64-i386-pair all_host_suite jessie xen-4.4-testing test-amd64-i386-pv all_host_suite jessie xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite jessie @@ -19374,6 +19508,7 @@ xen-4.4-testing test-amd64-amd64-libvirt all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.4-testing test-amd64-amd64-libvirt-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.4-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test +xen-4.4-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.4-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.4-testing test-amd64-amd64-pv all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.4-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test @@ -19395,6 +19530,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.4-testing test-amd64-i386-libvirt all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.4-testing test-amd64-i386-libvirt-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 +xen-4.4-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.4-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.4-testing test-amd64-i386-pv all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd @@ -19443,6 +19579,7 @@ xen-4.4-testing test-amd64-amd64-libvirt arch amd64 xen-4.4-testing test-amd64-amd64-libvirt-pair arch amd64 xen-4.4-testing test-amd64-amd64-libvirt-vhd arch amd64 +xen-4.4-testing test-amd64-amd64-livepatch arch amd64 xen-4.4-testing test-amd64-amd64-pair arch amd64 xen-4.4-testing test-amd64-amd64-pv arch amd64 xen-4.4-testing test-amd64-amd64-pygrub arch amd64 @@ -19464,6 +19601,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 arch i386 xen-4.4-testing test-amd64-i386-libvirt arch i386 xen-4.4-testing test-amd64-i386-libvirt-pair arch i386 +xen-4.4-testing test-amd64-i386-livepatch arch i386 xen-4.4-testing test-amd64-i386-pair arch i386 xen-4.4-testing test-amd64-i386-pv arch i386 xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -19525,6 +19663,7 @@ xen-4.4-testing test-amd64-amd64-libvirt buildjob build-amd64 xen-4.4-testing test-amd64-amd64-libvirt-pair buildjob build-amd64 xen-4.4-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 +xen-4.4-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.4-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.4-testing test-amd64-amd64-pv buildjob build-amd64-xend xen-4.4-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -19546,6 +19685,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 buildjob build-i386 xen-4.4-testing test-amd64-i386-libvirt buildjob build-i386 xen-4.4-testing test-amd64-i386-libvirt-pair buildjob build-i386 +xen-4.4-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.4-testing test-amd64-i386-pair buildjob build-i386 xen-4.4-testing test-amd64-i386-pv buildjob build-i386-xend xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -19779,6 +19919,7 @@ xen-4.4-testing test-amd64-amd64-libvirt kernbuildjob build-amd64-pvops xen-4.4-testing test-amd64-amd64-libvirt-pair kernbuildjob build-amd64-pvops xen-4.4-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops +xen-4.4-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.4-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.4-testing test-amd64-amd64-pv kernbuildjob build-amd64-pvops xen-4.4-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -19800,6 +19941,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 kernbuildjob build-i386-pvops xen-4.4-testing test-amd64-i386-libvirt kernbuildjob build-i386-pvops xen-4.4-testing test-amd64-i386-libvirt-pair kernbuildjob build-i386-pvops +xen-4.4-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.4-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.4-testing test-amd64-i386-pv kernbuildjob build-i386-pvops xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -19834,6 +19976,7 @@ xen-4.4-testing test-amd64-amd64-libvirt kernkind pvops xen-4.4-testing test-amd64-amd64-libvirt-pair kernkind pvops xen-4.4-testing test-amd64-amd64-libvirt-vhd kernkind pvops +xen-4.4-testing test-amd64-amd64-livepatch kernkind pvops xen-4.4-testing test-amd64-amd64-pair kernkind pvops xen-4.4-testing test-amd64-amd64-pv kernkind pvops xen-4.4-testing test-amd64-amd64-pygrub kernkind pvops @@ -19855,6 +19998,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 kernkind pvops xen-4.4-testing test-amd64-i386-libvirt kernkind pvops xen-4.4-testing test-amd64-i386-libvirt-pair kernkind pvops +xen-4.4-testing test-amd64-i386-livepatch kernkind pvops xen-4.4-testing test-amd64-i386-pair kernkind pvops xen-4.4-testing test-amd64-i386-pv kernkind pvops xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -19955,6 +20099,7 @@ xen-4.4-testing test-amd64-amd64-libvirt toolstack libvirt xen-4.4-testing test-amd64-amd64-libvirt-pair toolstack libvirt xen-4.4-testing test-amd64-amd64-libvirt-vhd toolstack libvirt +xen-4.4-testing test-amd64-amd64-livepatch toolstack xl xen-4.4-testing test-amd64-amd64-pair toolstack xl xen-4.4-testing test-amd64-amd64-pv toolstack xend xen-4.4-testing test-amd64-amd64-pygrub toolstack xl @@ -19976,6 +20121,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 toolstack xl xen-4.4-testing test-amd64-i386-libvirt toolstack libvirt xen-4.4-testing test-amd64-i386-libvirt-pair toolstack libvirt +xen-4.4-testing test-amd64-i386-livepatch toolstack xl xen-4.4-testing test-amd64-i386-pair toolstack xl xen-4.4-testing test-amd64-i386-pv toolstack xend xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -20073,7 +20219,9 @@ xen-4.4-testing test-amd64-i386-xl-qemut-winxpsp3-vcpus1 win_image winxpsp3.iso xen-4.4-testing test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso xen-4.4-testing test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +xen-4.4-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.4-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 +xen-4.4-testing test-amd64-i386-livepatch xen_boot_append loglvl=all xen-4.4-testing test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 xen-4.4-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all xen-4.4-testing test-xtf-amd64-amd64-2 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -20085,6 +20233,7 @@ xen-4.4-testing test-amd64-amd64-libvirt xenbuildjob build-amd64 xen-4.4-testing test-amd64-amd64-libvirt-pair xenbuildjob build-amd64 xen-4.4-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 +xen-4.4-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.4-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.4-testing test-amd64-amd64-pv xenbuildjob build-amd64-xend xen-4.4-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -20106,6 +20255,7 @@ xen-4.4-testing test-amd64-i386-freebsd10-i386 xenbuildjob build-amd64 xen-4.4-testing test-amd64-i386-libvirt xenbuildjob build-amd64 xen-4.4-testing test-amd64-i386-libvirt-pair xenbuildjob build-amd64 +xen-4.4-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.4-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.4-testing test-amd64-i386-pv xenbuildjob build-amd64-xend xen-4.4-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -20163,6 +20313,7 @@ xen-4.5-testing test-amd64-amd64-libvirt all_host_di_version current xen-4.5-testing test-amd64-amd64-libvirt-pair all_host_di_version current xen-4.5-testing test-amd64-amd64-libvirt-vhd all_host_di_version current +xen-4.5-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.5-testing test-amd64-amd64-migrupgrade all_host_di_version current xen-4.5-testing test-amd64-amd64-pair all_host_di_version current xen-4.5-testing test-amd64-amd64-pygrub all_host_di_version current @@ -20187,6 +20338,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 all_host_di_version current xen-4.5-testing test-amd64-i386-libvirt all_host_di_version current xen-4.5-testing test-amd64-i386-libvirt-pair all_host_di_version current +xen-4.5-testing test-amd64-i386-livepatch all_host_di_version current xen-4.5-testing test-amd64-i386-migrupgrade all_host_di_version current xen-4.5-testing test-amd64-i386-pair all_host_di_version current xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -20237,6 +20389,7 @@ xen-4.5-testing test-amd64-amd64-libvirt all_host_suite jessie xen-4.5-testing test-amd64-amd64-libvirt-pair all_host_suite jessie xen-4.5-testing test-amd64-amd64-libvirt-vhd all_host_suite jessie +xen-4.5-testing test-amd64-amd64-livepatch all_host_suite jessie xen-4.5-testing test-amd64-amd64-migrupgrade all_host_suite jessie xen-4.5-testing test-amd64-amd64-pair all_host_suite jessie xen-4.5-testing test-amd64-amd64-pygrub all_host_suite jessie @@ -20261,6 +20414,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 all_host_suite jessie xen-4.5-testing test-amd64-i386-libvirt all_host_suite jessie xen-4.5-testing test-amd64-i386-libvirt-pair all_host_suite jessie +xen-4.5-testing test-amd64-i386-livepatch all_host_suite jessie xen-4.5-testing test-amd64-i386-migrupgrade all_host_suite jessie xen-4.5-testing test-amd64-i386-pair all_host_suite jessie xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite jessie @@ -20297,6 +20451,7 @@ xen-4.5-testing test-amd64-amd64-libvirt all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.5-testing test-amd64-amd64-libvirt-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.5-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test +xen-4.5-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.5-testing test-amd64-amd64-migrupgrade all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.5-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.5-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test @@ -20321,6 +20476,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.5-testing test-amd64-i386-libvirt all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.5-testing test-amd64-i386-libvirt-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 +xen-4.5-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.5-testing test-amd64-i386-migrupgrade all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.5-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd @@ -20371,6 +20527,7 @@ xen-4.5-testing test-amd64-amd64-libvirt arch amd64 xen-4.5-testing test-amd64-amd64-libvirt-pair arch amd64 xen-4.5-testing test-amd64-amd64-libvirt-vhd arch amd64 +xen-4.5-testing test-amd64-amd64-livepatch arch amd64 xen-4.5-testing test-amd64-amd64-migrupgrade arch amd64 xen-4.5-testing test-amd64-amd64-pair arch amd64 xen-4.5-testing test-amd64-amd64-pygrub arch amd64 @@ -20395,6 +20552,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 arch i386 xen-4.5-testing test-amd64-i386-libvirt arch i386 xen-4.5-testing test-amd64-i386-libvirt-pair arch i386 +xen-4.5-testing test-amd64-i386-livepatch arch i386 xen-4.5-testing test-amd64-i386-migrupgrade arch i386 xen-4.5-testing test-amd64-i386-pair arch i386 xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -20458,6 +20616,7 @@ xen-4.5-testing test-amd64-amd64-libvirt buildjob build-amd64 xen-4.5-testing test-amd64-amd64-libvirt-pair buildjob build-amd64 xen-4.5-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 +xen-4.5-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.5-testing test-amd64-amd64-migrupgrade buildjob build-amd64 xen-4.5-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.5-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -20482,6 +20641,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 buildjob build-i386 xen-4.5-testing test-amd64-i386-libvirt buildjob build-i386 xen-4.5-testing test-amd64-i386-libvirt-pair buildjob build-i386 +xen-4.5-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.5-testing test-amd64-i386-migrupgrade buildjob build-i386 xen-4.5-testing test-amd64-i386-pair buildjob build-i386 xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -20736,6 +20896,7 @@ xen-4.5-testing test-amd64-amd64-libvirt kernbuildjob build-amd64-pvops xen-4.5-testing test-amd64-amd64-libvirt-pair kernbuildjob build-amd64-pvops xen-4.5-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops +xen-4.5-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.5-testing test-amd64-amd64-migrupgrade kernbuildjob build-amd64-pvops xen-4.5-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.5-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -20760,6 +20921,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 kernbuildjob build-i386-pvops xen-4.5-testing test-amd64-i386-libvirt kernbuildjob build-i386-pvops xen-4.5-testing test-amd64-i386-libvirt-pair kernbuildjob build-i386-pvops +xen-4.5-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.5-testing test-amd64-i386-migrupgrade kernbuildjob build-i386-pvops xen-4.5-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -20796,6 +20958,7 @@ xen-4.5-testing test-amd64-amd64-libvirt kernkind pvops xen-4.5-testing test-amd64-amd64-libvirt-pair kernkind pvops xen-4.5-testing test-amd64-amd64-libvirt-vhd kernkind pvops +xen-4.5-testing test-amd64-amd64-livepatch kernkind pvops xen-4.5-testing test-amd64-amd64-migrupgrade kernkind pvops xen-4.5-testing test-amd64-amd64-pair kernkind pvops xen-4.5-testing test-amd64-amd64-pygrub kernkind pvops @@ -20820,6 +20983,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 kernkind pvops xen-4.5-testing test-amd64-i386-libvirt kernkind pvops xen-4.5-testing test-amd64-i386-libvirt-pair kernkind pvops +xen-4.5-testing test-amd64-i386-livepatch kernkind pvops xen-4.5-testing test-amd64-i386-migrupgrade kernkind pvops xen-4.5-testing test-amd64-i386-pair kernkind pvops xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -20922,6 +21086,7 @@ xen-4.5-testing test-amd64-amd64-libvirt toolstack libvirt xen-4.5-testing test-amd64-amd64-libvirt-pair toolstack libvirt xen-4.5-testing test-amd64-amd64-libvirt-vhd toolstack libvirt +xen-4.5-testing test-amd64-amd64-livepatch toolstack xl xen-4.5-testing test-amd64-amd64-migrupgrade toolstack xl xen-4.5-testing test-amd64-amd64-pair toolstack xl xen-4.5-testing test-amd64-amd64-pygrub toolstack xl @@ -20946,6 +21111,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 toolstack xl xen-4.5-testing test-amd64-i386-libvirt toolstack libvirt xen-4.5-testing test-amd64-i386-libvirt-pair toolstack libvirt +xen-4.5-testing test-amd64-i386-livepatch toolstack xl xen-4.5-testing test-amd64-i386-migrupgrade toolstack xl xen-4.5-testing test-amd64-i386-pair toolstack xl xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -21043,8 +21209,10 @@ xen-4.5-testing test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso xen-4.5-testing test-amd64-i386-xl-qemuu-winxpsp3 win_image winxpsp3.iso xen-4.5-testing test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +xen-4.5-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.5-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 xen-4.5-testing test-amd64-amd64-xl-rtds xen_boot_append sched=rtds +xen-4.5-testing test-amd64-i386-livepatch xen_boot_append loglvl=all xen-4.5-testing test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 xen-4.5-testing test-armhf-armhf-xl-rtds xen_boot_append sched=rtds xen-4.5-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -21057,6 +21225,7 @@ xen-4.5-testing test-amd64-amd64-libvirt xenbuildjob build-amd64 xen-4.5-testing test-amd64-amd64-libvirt-pair xenbuildjob build-amd64 xen-4.5-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 +xen-4.5-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.5-testing test-amd64-amd64-migrupgrade xenbuildjob build-amd64 xen-4.5-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.5-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -21081,6 +21250,7 @@ xen-4.5-testing test-amd64-i386-freebsd10-i386 xenbuildjob build-amd64 xen-4.5-testing test-amd64-i386-libvirt xenbuildjob build-amd64 xen-4.5-testing test-amd64-i386-libvirt-pair xenbuildjob build-amd64 +xen-4.5-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.5-testing test-amd64-i386-migrupgrade xenbuildjob build-amd64 xen-4.5-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.5-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -21145,6 +21315,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-4.6-testing test-amd64-amd64-libvirt-vhd all_host_di_version current xen-4.6-testing test-amd64-amd64-libvirt-xsm all_host_di_version current +xen-4.6-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.6-testing test-amd64-amd64-migrupgrade all_host_di_version current xen-4.6-testing test-amd64-amd64-pair all_host_di_version current xen-4.6-testing test-amd64-amd64-pygrub all_host_di_version current @@ -21175,6 +21346,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair all_host_di_version current xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-4.6-testing test-amd64-i386-libvirt-xsm all_host_di_version current +xen-4.6-testing test-amd64-i386-livepatch all_host_di_version current xen-4.6-testing test-amd64-i386-migrupgrade all_host_di_version current xen-4.6-testing test-amd64-i386-pair all_host_di_version current xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -21236,6 +21408,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-4.6-testing test-amd64-amd64-libvirt-vhd all_host_suite jessie xen-4.6-testing test-amd64-amd64-libvirt-xsm all_host_suite jessie +xen-4.6-testing test-amd64-amd64-livepatch all_host_suite jessie xen-4.6-testing test-amd64-amd64-migrupgrade all_host_suite jessie xen-4.6-testing test-amd64-amd64-pair all_host_suite jessie xen-4.6-testing test-amd64-amd64-pygrub all_host_suite jessie @@ -21266,6 +21439,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair all_host_suite jessie xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-4.6-testing test-amd64-i386-libvirt-xsm all_host_suite jessie +xen-4.6-testing test-amd64-i386-livepatch all_host_suite jessie xen-4.6-testing test-amd64-i386-migrupgrade all_host_suite jessie xen-4.6-testing test-amd64-i386-pair all_host_suite jessie xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite jessie @@ -21310,6 +21484,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-4.6-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.6-testing test-amd64-amd64-libvirt-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test +xen-4.6-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.6-testing test-amd64-amd64-migrupgrade all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.6-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.6-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test @@ -21340,6 +21515,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-4.6-testing test-amd64-i386-libvirt-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test +xen-4.6-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.6-testing test-amd64-i386-migrupgrade all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.6-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd @@ -21401,6 +21577,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm arch amd64 xen-4.6-testing test-amd64-amd64-libvirt-vhd arch amd64 xen-4.6-testing test-amd64-amd64-libvirt-xsm arch amd64 +xen-4.6-testing test-amd64-amd64-livepatch arch amd64 xen-4.6-testing test-amd64-amd64-migrupgrade arch amd64 xen-4.6-testing test-amd64-amd64-pair arch amd64 xen-4.6-testing test-amd64-amd64-pygrub arch amd64 @@ -21431,6 +21608,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair arch i386 xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm arch i386 xen-4.6-testing test-amd64-i386-libvirt-xsm arch i386 +xen-4.6-testing test-amd64-i386-livepatch arch i386 xen-4.6-testing test-amd64-i386-migrupgrade arch i386 xen-4.6-testing test-amd64-i386-pair arch i386 xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -21513,6 +21691,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-amd64-xsm xen-4.6-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 xen-4.6-testing test-amd64-amd64-libvirt-xsm buildjob build-amd64-xsm +xen-4.6-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.6-testing test-amd64-amd64-migrupgrade buildjob build-amd64 xen-4.6-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.6-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -21543,6 +21722,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair buildjob build-i386 xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-i386-xsm xen-4.6-testing test-amd64-i386-libvirt-xsm buildjob build-i386-xsm +xen-4.6-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.6-testing test-amd64-i386-migrupgrade buildjob build-i386 xen-4.6-testing test-amd64-i386-pair buildjob build-i386 xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -21891,6 +22071,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-amd64-pvops xen-4.6-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops xen-4.6-testing test-amd64-amd64-libvirt-xsm kernbuildjob build-amd64-pvops +xen-4.6-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.6-testing test-amd64-amd64-migrupgrade kernbuildjob build-amd64-pvops xen-4.6-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.6-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -21921,6 +22102,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair kernbuildjob build-i386-pvops xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-i386-pvops xen-4.6-testing test-amd64-i386-libvirt-xsm kernbuildjob build-i386-pvops +xen-4.6-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.6-testing test-amd64-i386-migrupgrade kernbuildjob build-i386-pvops xen-4.6-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -21965,6 +22147,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-4.6-testing test-amd64-amd64-libvirt-vhd kernkind pvops xen-4.6-testing test-amd64-amd64-libvirt-xsm kernkind pvops +xen-4.6-testing test-amd64-amd64-livepatch kernkind pvops xen-4.6-testing test-amd64-amd64-migrupgrade kernkind pvops xen-4.6-testing test-amd64-amd64-pair kernkind pvops xen-4.6-testing test-amd64-amd64-pygrub kernkind pvops @@ -21995,6 +22178,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair kernkind pvops xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-4.6-testing test-amd64-i386-libvirt-xsm kernkind pvops +xen-4.6-testing test-amd64-i386-livepatch kernkind pvops xen-4.6-testing test-amd64-i386-migrupgrade kernkind pvops xen-4.6-testing test-amd64-i386-pair kernkind pvops xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -22128,6 +22312,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-4.6-testing test-amd64-amd64-libvirt-vhd toolstack libvirt xen-4.6-testing test-amd64-amd64-libvirt-xsm toolstack libvirt +xen-4.6-testing test-amd64-amd64-livepatch toolstack xl xen-4.6-testing test-amd64-amd64-migrupgrade toolstack xl xen-4.6-testing test-amd64-amd64-pair toolstack xl xen-4.6-testing test-amd64-amd64-pygrub toolstack xl @@ -22158,6 +22343,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair toolstack libvirt xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-4.6-testing test-amd64-i386-libvirt-xsm toolstack libvirt +xen-4.6-testing test-amd64-i386-livepatch toolstack xl xen-4.6-testing test-amd64-i386-migrupgrade toolstack xl xen-4.6-testing test-amd64-i386-pair toolstack xl xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -22279,8 +22465,10 @@ xen-4.6-testing test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso xen-4.6-testing test-amd64-i386-xl-qemuu-winxpsp3 win_image winxpsp3.iso xen-4.6-testing test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +xen-4.6-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.6-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 xen-4.6-testing test-amd64-amd64-xl-rtds xen_boot_append sched=rtds +xen-4.6-testing test-amd64-i386-livepatch xen_boot_append loglvl=all xen-4.6-testing test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 xen-4.6-testing test-armhf-armhf-xl-rtds xen_boot_append sched=rtds xen-4.6-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -22295,6 +22483,7 @@ xen-4.6-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-4.6-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 xen-4.6-testing test-amd64-amd64-libvirt-xsm xenbuildjob build-amd64-xsm +xen-4.6-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.6-testing test-amd64-amd64-migrupgrade xenbuildjob build-amd64 xen-4.6-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.6-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -22325,6 +22514,7 @@ xen-4.6-testing test-amd64-i386-libvirt-pair xenbuildjob build-amd64 xen-4.6-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-4.6-testing test-amd64-i386-libvirt-xsm xenbuildjob build-amd64-xsm +xen-4.6-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.6-testing test-amd64-i386-migrupgrade xenbuildjob build-amd64 xen-4.6-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.6-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -22395,6 +22585,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-4.7-testing test-amd64-amd64-libvirt-vhd all_host_di_version current xen-4.7-testing test-amd64-amd64-libvirt-xsm all_host_di_version current +xen-4.7-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.7-testing test-amd64-amd64-migrupgrade all_host_di_version current xen-4.7-testing test-amd64-amd64-pair all_host_di_version current xen-4.7-testing test-amd64-amd64-pygrub all_host_di_version current @@ -22425,6 +22616,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair all_host_di_version current xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-4.7-testing test-amd64-i386-libvirt-xsm all_host_di_version current +xen-4.7-testing test-amd64-i386-livepatch all_host_di_version current xen-4.7-testing test-amd64-i386-migrupgrade all_host_di_version current xen-4.7-testing test-amd64-i386-pair all_host_di_version current xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -22486,6 +22678,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-4.7-testing test-amd64-amd64-libvirt-vhd all_host_suite jessie xen-4.7-testing test-amd64-amd64-libvirt-xsm all_host_suite jessie +xen-4.7-testing test-amd64-amd64-livepatch all_host_suite jessie xen-4.7-testing test-amd64-amd64-migrupgrade all_host_suite jessie xen-4.7-testing test-amd64-amd64-pair all_host_suite jessie xen-4.7-testing test-amd64-amd64-pygrub all_host_suite jessie @@ -22516,6 +22709,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair all_host_suite jessie xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-4.7-testing test-amd64-i386-libvirt-xsm all_host_suite jessie +xen-4.7-testing test-amd64-i386-livepatch all_host_suite jessie xen-4.7-testing test-amd64-i386-migrupgrade all_host_suite jessie xen-4.7-testing test-amd64-i386-pair all_host_suite jessie xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite jessie @@ -22560,6 +22754,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-4.7-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.7-testing test-amd64-amd64-libvirt-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test +xen-4.7-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.7-testing test-amd64-amd64-migrupgrade all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.7-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.7-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test @@ -22590,6 +22785,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-4.7-testing test-amd64-i386-libvirt-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test +xen-4.7-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.7-testing test-amd64-i386-migrupgrade all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.7-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd @@ -22651,6 +22847,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm arch amd64 xen-4.7-testing test-amd64-amd64-libvirt-vhd arch amd64 xen-4.7-testing test-amd64-amd64-libvirt-xsm arch amd64 +xen-4.7-testing test-amd64-amd64-livepatch arch amd64 xen-4.7-testing test-amd64-amd64-migrupgrade arch amd64 xen-4.7-testing test-amd64-amd64-pair arch amd64 xen-4.7-testing test-amd64-amd64-pygrub arch amd64 @@ -22681,6 +22878,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair arch i386 xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm arch i386 xen-4.7-testing test-amd64-i386-libvirt-xsm arch i386 +xen-4.7-testing test-amd64-i386-livepatch arch i386 xen-4.7-testing test-amd64-i386-migrupgrade arch i386 xen-4.7-testing test-amd64-i386-pair arch i386 xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -22763,6 +22961,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-amd64-xsm xen-4.7-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 xen-4.7-testing test-amd64-amd64-libvirt-xsm buildjob build-amd64-xsm +xen-4.7-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.7-testing test-amd64-amd64-migrupgrade buildjob build-amd64 xen-4.7-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.7-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -22793,6 +22992,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair buildjob build-i386 xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-i386-xsm xen-4.7-testing test-amd64-i386-libvirt-xsm buildjob build-i386-xsm +xen-4.7-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.7-testing test-amd64-i386-migrupgrade buildjob build-i386 xen-4.7-testing test-amd64-i386-pair buildjob build-i386 xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -23141,6 +23341,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-amd64-pvops xen-4.7-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops xen-4.7-testing test-amd64-amd64-libvirt-xsm kernbuildjob build-amd64-pvops +xen-4.7-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.7-testing test-amd64-amd64-migrupgrade kernbuildjob build-amd64-pvops xen-4.7-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.7-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -23171,6 +23372,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair kernbuildjob build-i386-pvops xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-i386-pvops xen-4.7-testing test-amd64-i386-libvirt-xsm kernbuildjob build-i386-pvops +xen-4.7-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.7-testing test-amd64-i386-migrupgrade kernbuildjob build-i386-pvops xen-4.7-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -23215,6 +23417,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-4.7-testing test-amd64-amd64-libvirt-vhd kernkind pvops xen-4.7-testing test-amd64-amd64-libvirt-xsm kernkind pvops +xen-4.7-testing test-amd64-amd64-livepatch kernkind pvops xen-4.7-testing test-amd64-amd64-migrupgrade kernkind pvops xen-4.7-testing test-amd64-amd64-pair kernkind pvops xen-4.7-testing test-amd64-amd64-pygrub kernkind pvops @@ -23245,6 +23448,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair kernkind pvops xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-4.7-testing test-amd64-i386-libvirt-xsm kernkind pvops +xen-4.7-testing test-amd64-i386-livepatch kernkind pvops xen-4.7-testing test-amd64-i386-migrupgrade kernkind pvops xen-4.7-testing test-amd64-i386-pair kernkind pvops xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -23378,6 +23582,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-4.7-testing test-amd64-amd64-libvirt-vhd toolstack libvirt xen-4.7-testing test-amd64-amd64-libvirt-xsm toolstack libvirt +xen-4.7-testing test-amd64-amd64-livepatch toolstack xl xen-4.7-testing test-amd64-amd64-migrupgrade toolstack xl xen-4.7-testing test-amd64-amd64-pair toolstack xl xen-4.7-testing test-amd64-amd64-pygrub toolstack xl @@ -23408,6 +23613,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair toolstack libvirt xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-4.7-testing test-amd64-i386-libvirt-xsm toolstack libvirt +xen-4.7-testing test-amd64-i386-livepatch toolstack xl xen-4.7-testing test-amd64-i386-migrupgrade toolstack xl xen-4.7-testing test-amd64-i386-pair toolstack xl xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -23529,8 +23735,10 @@ xen-4.7-testing test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso xen-4.7-testing test-amd64-i386-xl-qemuu-winxpsp3 win_image winxpsp3.iso xen-4.7-testing test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +xen-4.7-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.7-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 xen-4.7-testing test-amd64-amd64-xl-rtds xen_boot_append sched=rtds +xen-4.7-testing test-amd64-i386-livepatch xen_boot_append loglvl=all xen-4.7-testing test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 xen-4.7-testing test-armhf-armhf-xl-rtds xen_boot_append sched=rtds xen-4.7-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -23545,6 +23753,7 @@ xen-4.7-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-4.7-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 xen-4.7-testing test-amd64-amd64-libvirt-xsm xenbuildjob build-amd64-xsm +xen-4.7-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.7-testing test-amd64-amd64-migrupgrade xenbuildjob build-amd64 xen-4.7-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.7-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -23575,6 +23784,7 @@ xen-4.7-testing test-amd64-i386-libvirt-pair xenbuildjob build-amd64 xen-4.7-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-4.7-testing test-amd64-i386-libvirt-xsm xenbuildjob build-amd64-xsm +xen-4.7-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.7-testing test-amd64-i386-migrupgrade xenbuildjob build-amd64 xen-4.7-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.7-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -23645,6 +23855,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-4.8-testing test-amd64-amd64-libvirt-vhd all_host_di_version current xen-4.8-testing test-amd64-amd64-libvirt-xsm all_host_di_version current +xen-4.8-testing test-amd64-amd64-livepatch all_host_di_version current xen-4.8-testing test-amd64-amd64-migrupgrade all_host_di_version current xen-4.8-testing test-amd64-amd64-pair all_host_di_version current xen-4.8-testing test-amd64-amd64-pygrub all_host_di_version current @@ -23675,6 +23886,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair all_host_di_version current xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-4.8-testing test-amd64-i386-libvirt-xsm all_host_di_version current +xen-4.8-testing test-amd64-i386-livepatch all_host_di_version current xen-4.8-testing test-amd64-i386-migrupgrade all_host_di_version current xen-4.8-testing test-amd64-i386-pair all_host_di_version current xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -23736,6 +23948,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-4.8-testing test-amd64-amd64-libvirt-vhd all_host_suite jessie xen-4.8-testing test-amd64-amd64-libvirt-xsm all_host_suite jessie +xen-4.8-testing test-amd64-amd64-livepatch all_host_suite jessie xen-4.8-testing test-amd64-amd64-migrupgrade all_host_suite jessie xen-4.8-testing test-amd64-amd64-pair all_host_suite jessie xen-4.8-testing test-amd64-amd64-pygrub all_host_suite jessie @@ -23766,6 +23979,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair all_host_suite jessie xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-4.8-testing test-amd64-i386-libvirt-xsm all_host_suite jessie +xen-4.8-testing test-amd64-i386-livepatch all_host_suite jessie xen-4.8-testing test-amd64-i386-migrupgrade all_host_suite jessie xen-4.8-testing test-amd64-i386-pair all_host_suite jessie xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd all_host_suite jessie @@ -23810,6 +24024,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-4.8-testing test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.8-testing test-amd64-amd64-libvirt-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test +xen-4.8-testing test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-4.8-testing test-amd64-amd64-migrupgrade all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.8-testing test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.8-testing test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test @@ -23840,6 +24055,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-4.8-testing test-amd64-i386-libvirt-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test +xen-4.8-testing test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-4.8-testing test-amd64-i386-migrupgrade all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.8-testing test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd @@ -23901,6 +24117,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm arch amd64 xen-4.8-testing test-amd64-amd64-libvirt-vhd arch amd64 xen-4.8-testing test-amd64-amd64-libvirt-xsm arch amd64 +xen-4.8-testing test-amd64-amd64-livepatch arch amd64 xen-4.8-testing test-amd64-amd64-migrupgrade arch amd64 xen-4.8-testing test-amd64-amd64-pair arch amd64 xen-4.8-testing test-amd64-amd64-pygrub arch amd64 @@ -23931,6 +24148,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair arch i386 xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm arch i386 xen-4.8-testing test-amd64-i386-libvirt-xsm arch i386 +xen-4.8-testing test-amd64-i386-livepatch arch i386 xen-4.8-testing test-amd64-i386-migrupgrade arch i386 xen-4.8-testing test-amd64-i386-pair arch i386 xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -24013,6 +24231,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-amd64-xsm xen-4.8-testing test-amd64-amd64-libvirt-vhd buildjob build-amd64 xen-4.8-testing test-amd64-amd64-libvirt-xsm buildjob build-amd64-xsm +xen-4.8-testing test-amd64-amd64-livepatch buildjob build-amd64 xen-4.8-testing test-amd64-amd64-migrupgrade buildjob build-amd64 xen-4.8-testing test-amd64-amd64-pair buildjob build-amd64 xen-4.8-testing test-amd64-amd64-pygrub buildjob build-amd64 @@ -24043,6 +24262,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair buildjob build-i386 xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-i386-xsm xen-4.8-testing test-amd64-i386-libvirt-xsm buildjob build-i386-xsm +xen-4.8-testing test-amd64-i386-livepatch buildjob build-i386 xen-4.8-testing test-amd64-i386-migrupgrade buildjob build-i386 xen-4.8-testing test-amd64-i386-pair buildjob build-i386 xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -24391,6 +24611,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-amd64-pvops xen-4.8-testing test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops xen-4.8-testing test-amd64-amd64-libvirt-xsm kernbuildjob build-amd64-pvops +xen-4.8-testing test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-4.8-testing test-amd64-amd64-migrupgrade kernbuildjob build-amd64-pvops xen-4.8-testing test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-4.8-testing test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -24421,6 +24642,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair kernbuildjob build-i386-pvops xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-i386-pvops xen-4.8-testing test-amd64-i386-libvirt-xsm kernbuildjob build-i386-pvops +xen-4.8-testing test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-4.8-testing test-amd64-i386-migrupgrade kernbuildjob build-i386-pvops xen-4.8-testing test-amd64-i386-pair kernbuildjob build-i386-pvops xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -24465,6 +24687,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-4.8-testing test-amd64-amd64-libvirt-vhd kernkind pvops xen-4.8-testing test-amd64-amd64-libvirt-xsm kernkind pvops +xen-4.8-testing test-amd64-amd64-livepatch kernkind pvops xen-4.8-testing test-amd64-amd64-migrupgrade kernkind pvops xen-4.8-testing test-amd64-amd64-pair kernkind pvops xen-4.8-testing test-amd64-amd64-pygrub kernkind pvops @@ -24495,6 +24718,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair kernkind pvops xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-4.8-testing test-amd64-i386-libvirt-xsm kernkind pvops +xen-4.8-testing test-amd64-i386-livepatch kernkind pvops xen-4.8-testing test-amd64-i386-migrupgrade kernkind pvops xen-4.8-testing test-amd64-i386-pair kernkind pvops xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -24628,6 +24852,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-4.8-testing test-amd64-amd64-libvirt-vhd toolstack libvirt xen-4.8-testing test-amd64-amd64-libvirt-xsm toolstack libvirt +xen-4.8-testing test-amd64-amd64-livepatch toolstack xl xen-4.8-testing test-amd64-amd64-migrupgrade toolstack xl xen-4.8-testing test-amd64-amd64-pair toolstack xl xen-4.8-testing test-amd64-amd64-pygrub toolstack xl @@ -24658,6 +24883,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair toolstack libvirt xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-4.8-testing test-amd64-i386-libvirt-xsm toolstack libvirt +xen-4.8-testing test-amd64-i386-livepatch toolstack xl xen-4.8-testing test-amd64-i386-migrupgrade toolstack xl xen-4.8-testing test-amd64-i386-pair toolstack xl xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -24779,8 +25005,10 @@ xen-4.8-testing test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso xen-4.8-testing test-amd64-i386-xl-qemuu-winxpsp3 win_image winxpsp3.iso xen-4.8-testing test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +xen-4.8-testing test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-4.8-testing test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 xen-4.8-testing test-amd64-amd64-xl-rtds xen_boot_append sched=rtds +xen-4.8-testing test-amd64-i386-livepatch xen_boot_append loglvl=all xen-4.8-testing test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 xen-4.8-testing test-armhf-armhf-xl-rtds xen_boot_append sched=rtds xen-4.8-testing test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -24795,6 +25023,7 @@ xen-4.8-testing test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-4.8-testing test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 xen-4.8-testing test-amd64-amd64-libvirt-xsm xenbuildjob build-amd64-xsm +xen-4.8-testing test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-4.8-testing test-amd64-amd64-migrupgrade xenbuildjob build-amd64 xen-4.8-testing test-amd64-amd64-pair xenbuildjob build-amd64 xen-4.8-testing test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -24825,6 +25054,7 @@ xen-4.8-testing test-amd64-i386-libvirt-pair xenbuildjob build-amd64 xen-4.8-testing test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-4.8-testing test-amd64-i386-libvirt-xsm xenbuildjob build-amd64-xsm +xen-4.8-testing test-amd64-i386-livepatch xenbuildjob build-amd64 xen-4.8-testing test-amd64-i386-migrupgrade xenbuildjob build-amd64 xen-4.8-testing test-amd64-i386-pair xenbuildjob build-amd64 xen-4.8-testing test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 @@ -24897,6 +25127,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-unstable test-amd64-amd64-libvirt-vhd all_host_di_version current xen-unstable test-amd64-amd64-libvirt-xsm all_host_di_version current +xen-unstable test-amd64-amd64-livepatch all_host_di_version current xen-unstable test-amd64-amd64-migrupgrade all_host_di_version current xen-unstable test-amd64-amd64-pair all_host_di_version current xen-unstable test-amd64-amd64-pygrub all_host_di_version current @@ -24927,6 +25158,7 @@ xen-unstable test-amd64-i386-libvirt-pair all_host_di_version current xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_di_version current xen-unstable test-amd64-i386-libvirt-xsm all_host_di_version current +xen-unstable test-amd64-i386-livepatch all_host_di_version current xen-unstable test-amd64-i386-migrupgrade all_host_di_version current xen-unstable test-amd64-i386-pair all_host_di_version current xen-unstable test-amd64-i386-qemut-rhel6hvm-amd all_host_di_version current @@ -24990,6 +25222,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-unstable test-amd64-amd64-libvirt-vhd all_host_suite jessie xen-unstable test-amd64-amd64-libvirt-xsm all_host_suite jessie +xen-unstable test-amd64-amd64-livepatch all_host_suite jessie xen-unstable test-amd64-amd64-migrupgrade all_host_suite jessie xen-unstable test-amd64-amd64-pair all_host_suite jessie xen-unstable test-amd64-amd64-pygrub all_host_suite jessie @@ -25020,6 +25253,7 @@ xen-unstable test-amd64-i386-libvirt-pair all_host_suite jessie xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_host_suite jessie xen-unstable test-amd64-i386-libvirt-xsm all_host_suite jessie +xen-unstable test-amd64-i386-livepatch all_host_suite jessie xen-unstable test-amd64-i386-migrupgrade all_host_suite jessie xen-unstable test-amd64-i386-pair all_host_suite jessie xen-unstable test-amd64-i386-qemut-rhel6hvm-amd all_host_suite jessie @@ -25064,6 +25298,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-unstable test-amd64-amd64-libvirt-vhd all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-unstable test-amd64-amd64-libvirt-xsm all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test +xen-unstable test-amd64-amd64-livepatch all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test xen-unstable test-amd64-amd64-migrupgrade all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-unstable test-amd64-amd64-pair all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-unstable test-amd64-amd64-pygrub all_hostflags arch-amd64,arch-xen-amd64,suite-jessie,purpose-test @@ -25094,6 +25329,7 @@ xen-unstable test-amd64-i386-libvirt-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm xen-unstable test-amd64-i386-libvirt-xsm all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test +xen-unstable test-amd64-i386-livepatch all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test xen-unstable test-amd64-i386-migrupgrade all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-unstable test-amd64-i386-pair all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,equiv-1 xen-unstable test-amd64-i386-qemut-rhel6hvm-amd all_hostflags arch-i386,arch-xen-amd64,suite-jessie,purpose-test,hvm-amd @@ -25157,6 +25393,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm arch amd64 xen-unstable test-amd64-amd64-libvirt-vhd arch amd64 xen-unstable test-amd64-amd64-libvirt-xsm arch amd64 +xen-unstable test-amd64-amd64-livepatch arch amd64 xen-unstable test-amd64-amd64-migrupgrade arch amd64 xen-unstable test-amd64-amd64-pair arch amd64 xen-unstable test-amd64-amd64-pygrub arch amd64 @@ -25187,6 +25424,7 @@ xen-unstable test-amd64-i386-libvirt-pair arch i386 xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm arch i386 xen-unstable test-amd64-i386-libvirt-xsm arch i386 +xen-unstable test-amd64-i386-livepatch arch i386 xen-unstable test-amd64-i386-migrupgrade arch i386 xen-unstable test-amd64-i386-pair arch i386 xen-unstable test-amd64-i386-qemut-rhel6hvm-amd arch i386 @@ -25271,6 +25509,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-amd64-xsm xen-unstable test-amd64-amd64-libvirt-vhd buildjob build-amd64 xen-unstable test-amd64-amd64-libvirt-xsm buildjob build-amd64-xsm +xen-unstable test-amd64-amd64-livepatch buildjob build-amd64 xen-unstable test-amd64-amd64-migrupgrade buildjob build-amd64 xen-unstable test-amd64-amd64-pair buildjob build-amd64 xen-unstable test-amd64-amd64-pygrub buildjob build-amd64 @@ -25301,6 +25540,7 @@ xen-unstable test-amd64-i386-libvirt-pair buildjob build-i386 xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm buildjob build-i386-xsm xen-unstable test-amd64-i386-libvirt-xsm buildjob build-i386-xsm +xen-unstable test-amd64-i386-livepatch buildjob build-i386 xen-unstable test-amd64-i386-migrupgrade buildjob build-i386 xen-unstable test-amd64-i386-pair buildjob build-i386 xen-unstable test-amd64-i386-qemut-rhel6hvm-amd buildjob build-i386 @@ -25653,6 +25893,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-amd64-pvops xen-unstable test-amd64-amd64-libvirt-vhd kernbuildjob build-amd64-pvops xen-unstable test-amd64-amd64-libvirt-xsm kernbuildjob build-amd64-pvops +xen-unstable test-amd64-amd64-livepatch kernbuildjob build-amd64-pvops xen-unstable test-amd64-amd64-migrupgrade kernbuildjob build-amd64-pvops xen-unstable test-amd64-amd64-pair kernbuildjob build-amd64-pvops xen-unstable test-amd64-amd64-pygrub kernbuildjob build-amd64-pvops @@ -25683,6 +25924,7 @@ xen-unstable test-amd64-i386-libvirt-pair kernbuildjob build-i386-pvops xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernbuildjob build-i386-pvops xen-unstable test-amd64-i386-libvirt-xsm kernbuildjob build-i386-pvops +xen-unstable test-amd64-i386-livepatch kernbuildjob build-i386-pvops xen-unstable test-amd64-i386-migrupgrade kernbuildjob build-i386-pvops xen-unstable test-amd64-i386-pair kernbuildjob build-i386-pvops xen-unstable test-amd64-i386-qemut-rhel6hvm-amd kernbuildjob build-i386-pvops @@ -25727,6 +25969,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-unstable test-amd64-amd64-libvirt-vhd kernkind pvops xen-unstable test-amd64-amd64-libvirt-xsm kernkind pvops +xen-unstable test-amd64-amd64-livepatch kernkind pvops xen-unstable test-amd64-amd64-migrupgrade kernkind pvops xen-unstable test-amd64-amd64-pair kernkind pvops xen-unstable test-amd64-amd64-pygrub kernkind pvops @@ -25757,6 +26000,7 @@ xen-unstable test-amd64-i386-libvirt-pair kernkind pvops xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm kernkind pvops xen-unstable test-amd64-i386-libvirt-xsm kernkind pvops +xen-unstable test-amd64-i386-livepatch kernkind pvops xen-unstable test-amd64-i386-migrupgrade kernkind pvops xen-unstable test-amd64-i386-pair kernkind pvops xen-unstable test-amd64-i386-qemut-rhel6hvm-amd kernkind pvops @@ -25894,6 +26138,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-unstable test-amd64-amd64-libvirt-vhd toolstack libvirt xen-unstable test-amd64-amd64-libvirt-xsm toolstack libvirt +xen-unstable test-amd64-amd64-livepatch toolstack xl xen-unstable test-amd64-amd64-migrupgrade toolstack xl xen-unstable test-amd64-amd64-pair toolstack xl xen-unstable test-amd64-amd64-pygrub toolstack xl @@ -25924,6 +26169,7 @@ xen-unstable test-amd64-i386-libvirt-pair toolstack libvirt xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm toolstack libvirt xen-unstable test-amd64-i386-libvirt-xsm toolstack libvirt +xen-unstable test-amd64-i386-livepatch toolstack xl xen-unstable test-amd64-i386-migrupgrade toolstack xl xen-unstable test-amd64-i386-pair toolstack xl xen-unstable test-amd64-i386-qemut-rhel6hvm-amd toolstack xl @@ -26047,8 +26293,10 @@ xen-unstable test-amd64-i386-xl-qemuu-win7-amd64 win_image win7-x64.iso xen-unstable test-amd64-i386-xl-qemuu-winxpsp3 win_image winxpsp3.iso xen-unstable test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 win_image winxpsp3.iso +xen-unstable test-amd64-amd64-livepatch xen_boot_append loglvl=all xen-unstable test-amd64-amd64-xl-credit2 xen_boot_append sched=credit2 xen-unstable test-amd64-amd64-xl-rtds xen_boot_append sched=rtds +xen-unstable test-amd64-i386-livepatch xen_boot_append loglvl=all xen-unstable test-armhf-armhf-xl-credit2 xen_boot_append sched=credit2 xen-unstable test-armhf-armhf-xl-rtds xen_boot_append sched=rtds xen-unstable test-xtf-amd64-amd64-1 xen_boot_append hvm_fep=1 loglvl=all guest_loglvl=all @@ -26063,6 +26311,7 @@ xen-unstable test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-unstable test-amd64-amd64-libvirt-vhd xenbuildjob build-amd64 xen-unstable test-amd64-amd64-libvirt-xsm xenbuildjob build-amd64-xsm +xen-unstable test-amd64-amd64-livepatch xenbuildjob build-amd64 xen-unstable test-amd64-amd64-migrupgrade xenbuildjob build-amd64 xen-unstable test-amd64-amd64-pair xenbuildjob build-amd64 xen-unstable test-amd64-amd64-pygrub xenbuildjob build-amd64 @@ -26093,6 +26342,7 @@ xen-unstable test-amd64-i386-libvirt-pair xenbuildjob build-amd64 xen-unstable test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm xenbuildjob build-amd64-xsm xen-unstable test-amd64-i386-libvirt-xsm xenbuildjob build-amd64-xsm +xen-unstable test-amd64-i386-livepatch xenbuildjob build-amd64 xen-unstable test-amd64-i386-migrupgrade xenbuildjob build-amd64 xen-unstable test-amd64-i386-pair xenbuildjob build-amd64 xen-unstable test-amd64-i386-qemut-rhel6hvm-amd xenbuildjob build-amd64 Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> --- make-flight | 12 ++++++++++++ mfi-common | 9 +++++++++ 2 files changed, 21 insertions(+)