From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH 10/10] make-flight: make an armhf flight Date: Wed, 4 Sep 2013 17:58:23 +0100 Message-ID: <1378313903-10539-10-git-send-email-ian.campbell@citrix.com> References: <1378313870.17510.172.camel@kazak.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1378313870.17510.172.camel@kazak.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: ian.jackson@eu.citrix.com Cc: Ian Campbell , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org --- make-flight | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/make-flight b/make-flight index d29016d..f180ac2 100755 --- a/make-flight +++ b/make-flight @@ -189,11 +189,21 @@ job_create_test () { $RUNVARS $TEST_RUNVARS $most_runvars "$@" } -for xenarch in ${TEST_ARCHES- i386 amd64 } ; do +for xenarch in ${TEST_ARCHES- i386 amd64 armhf } ; do if [ "x$xenarch" = xdisable ]; then continue; fi case "$xenarch" in + armhf) + # Arm from 4.3 onwards only + case "$xenbranch" in + xen-3.*-testing) continue;; + xen-4.0-testing) continue;; + xen-4.1-testing) continue;; + xen-4.2-testing) continue;; + *) ;; + esac + ;; i386) # 32-bit Xen is dropped from 4.3 onwards case "$xenbranch" in @@ -203,6 +213,7 @@ for xenarch in ${TEST_ARCHES- i386 amd64 } ; do xen-4.2-testing) ;; *) continue ;; esac + ;; esac for kern in ''; do @@ -220,7 +231,7 @@ for xenarch in ${TEST_ARCHES- i386 amd64 } ; do *) echo >&2 "kernkind ? $kern"; exit 1 ;; esac - for dom0arch in i386 amd64; do + for dom0arch in i386 amd64 armhf; do eval " arch_runvars=\"\$ARCH_RUNVARS_$dom0arch\" @@ -240,6 +251,13 @@ for xenarch in ${TEST_ARCHES- i386 amd64 } ; do kernkind=$kernkind \ $arch_runvars " + if [ $dom0arch = armhf ]; then + job_create_test test-$xenarch$kern-$dom0arch-xl test-debian xl \ + debian_kernkind=$kernkind \ + debian_arch=$dom0arch \ + all_hostflags=$most_hostflags + continue + fi job_create_test test-$xenarch$kern-$dom0arch-pv test-debian xend \ debian_kernkind=$kernkind \ -- 1.7.10.4