Message ID | 1395662050.6294.2.camel@kazak.uk.xensource.com |
---|---|
State | New |
Headers | show |
Ian Campbell writes ("[PATCH] make-flight: drop another stray xend test from 4.5 onwards (Was: Re: [Xen-devel] [xen-unstable test] 25628: tolerable FAIL)"): > On Mon, 2014-03-24 at 08:08 +0000, xen.org wrote: > > Tests which did not succeed, but are not blocking: > [...] > > test-amd64-amd64-pv 1 xen-build-check(1) blocked n/a > > test-amd64-i386-pv 1 xen-build-check(1) blocked n/a > > BROKEN: job 25628.build-amd64-xend not found (for path_dist); (25628.test-amd64-amd64-pv not marked broken) at Osstest/TestSupport.pm line 206. > > Looks like I missed a reference to xend in 4e8b8c227544 "make-flight: > only test xl in unstable", not sure how... Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Will you push this ? Thanks, Ian.
On Wed, 2014-04-02 at 15:51 +0100, Ian Jackson wrote: > Ian Campbell writes ("[PATCH] make-flight: drop another stray xend test from 4.5 onwards (Was: Re: [Xen-devel] [xen-unstable test] 25628: tolerable FAIL)"): > > On Mon, 2014-03-24 at 08:08 +0000, xen.org wrote: > > > Tests which did not succeed, but are not blocking: > > [...] > > > test-amd64-amd64-pv 1 xen-build-check(1) blocked n/a > > > test-amd64-i386-pv 1 xen-build-check(1) blocked n/a > > > > BROKEN: job 25628.build-amd64-xend not found (for path_dist); (25628.test-amd64-amd64-pv not marked broken) at Osstest/TestSupport.pm line 206. > > > > Looks like I missed a reference to xend in 4e8b8c227544 "make-flight: > > only test xl in unstable", not sure how... > > Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> > > Will you push this ? Yes.
On Wed, 2014-04-02 at 15:55 +0100, Ian Campbell wrote: > On Wed, 2014-04-02 at 15:51 +0100, Ian Jackson wrote: > > Ian Campbell writes ("[PATCH] make-flight: drop another stray xend test from 4.5 onwards (Was: Re: [Xen-devel] [xen-unstable test] 25628: tolerable FAIL)"): > > > On Mon, 2014-03-24 at 08:08 +0000, xen.org wrote: > > > > Tests which did not succeed, but are not blocking: > > > [...] > > > > test-amd64-amd64-pv 1 xen-build-check(1) blocked n/a > > > > test-amd64-i386-pv 1 xen-build-check(1) blocked n/a > > > > > > BROKEN: job 25628.build-amd64-xend not found (for path_dist); (25628.test-amd64-amd64-pv not marked broken) at Osstest/TestSupport.pm line 206. > > > > > > Looks like I missed a reference to xend in 4e8b8c227544 "make-flight: > > > only test xl in unstable", not sure how... > > > > Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> > > > > Will you push this ? > > Yes. I added my own S-o-b in addition to your ack and pushed. Thanks, Ian.
diff --git a/make-flight b/make-flight index 39fa7ba..8bfa1d9 100755 --- a/make-flight +++ b/make-flight @@ -126,16 +126,11 @@ do_hvm_winxp_tests () { continue fi - # No xend from 4.5 onwards - case "$xenbranch" in - xen-3.*-testing) toolstack= ;; - xen-4.0-testing) toolstack= ;; - xen-4.1-testing) toolstack= ;; - xen-4.2-testing) toolstack= ;; - xen-4.3-testing) toolstack= ;; - xen-4.4-testing) toolstack= ;; - *) toolstack="xl" ;; - esac + if [ x$test_xend != xy ] ; then + toolstack="xl" + else + toolstack= + fi if [ x$toolstack = x ] ; then stripy toolstack xend xl \ @@ -237,8 +232,19 @@ test_matrix_do_one () { return fi + # xend tests for versions <= 4.4 only + case "$xenbranch" in + xen-3.*-testing) test_xend=y ;; + xen-4.0-testing) test_xend=y ;; + xen-4.1-testing) test_xend=y ;; + xen-4.2-testing) test_xend=y ;; + xen-4.3-testing) test_xend=y ;; + xen-4.4-testing) test_xend=y ;; + *) test_xend=n ;; + esac + # xend PV guest test on x86 only - if [ $dom0arch = "i386" -o $dom0arch = "amd64" ]; then + if [ x$test_xend = xy -a $dom0arch = "i386" -o $dom0arch = "amd64" ]; then job_create_test test-$xenarch$kern-$dom0arch-pv test-debian xend \ $xenarch $dom0arch \ $debian_runvars all_hostflags=$most_hostflags