From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH OSSTEST] Arrange to test migration from the previous Xen version Date: Fri, 24 Jul 2015 14:58:45 +0100 Message-ID: <1437746325.24746.111.camel@citrix.com> References: <1437744312-30373-1-git-send-email-ian.campbell@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1437744312-30373-1-git-send-email-ian.campbell@citrix.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, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Fri, 2015-07-24 at 14:25 +0100, Ian Campbell wrote: > > +branch_wants_migrupgrade_tests () { > + case "$branch" in > + xen*) return 0;; > + *) return 1 ;; > + esac > +} The first branch in ./mg-list-all-branches is xen-4.0-testing and hence the first thing supported by select_prevxenbranch is xen-4.1-testing. So perhaps the following delta would be a good idea? diff --git a/mfi-common b/mfi-common index 41f78c0..3bb516b 100644 --- a/mfi-common +++ b/mfi-common @@ -43,6 +43,8 @@ branch_wants_rumpkernel_tests () { branch_wants_migrupgrade_tests () { case "$branch" in + xen-3.*-testing) return 1 ;; + xen-4.0-testing) return 1 ;; xen*) return 0;; *) return 1 ;; esac