From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [OSSTEST PATCH 15/26] cr*: Support xen-unstable-smoke Date: Mon, 21 Sep 2015 11:32:25 +0100 Message-ID: <1442831545.10338.44.camel@citrix.com> References: <1442598616-2884-1-git-send-email-ian.jackson@eu.citrix.com> <1442598616-2884-2-git-send-email-ian.jackson@eu.citrix.com> <1442827052.10338.16.camel@citrix.com> <22015.55849.994969.16673@mariner.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZdyOc-0002jw-4u for xen-devel@lists.xenproject.org; Mon, 21 Sep 2015 10:32:30 +0000 In-Reply-To: <22015.55849.994969.16673@mariner.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 Cc: xen-devel@lists.xenproject.org List-Id: xen-devel@lists.xenproject.org On Mon, 2015-09-21 at 11:21 +0100, Ian Jackson wrote: > Ian Campbell writes ("Re: [OSSTEST PATCH 15/26] cr*: Support xen-unstable > -smoke"): > > On Fri, 2015-09-18 at 18:50 +0100, Ian Jackson wrote: > > > Add this branch to select_xenbranch. This works like xen-unstable in > > > most respects. > > > > > > There are only two places in osstest where xenbranch `xen-unstable' > > > is > > > treated specially and only one of them needs adjusting to match > > > xen-unstable-smoke too. > > > > The included one is the one which adds the qemu revisions? > > No, this in cr-daily-branch: > > if [ "x$branch" != "xxen-unstable" ]; then > export REVISION_LINUX_OLD=disable > fi That's the one which didn't need adjusting I think. > > And the other one is, I think, the thing which sets > > REVISION_LINUX_OLD=disable which we want (or maybe don't care about) > > for > > the smoked tests. So good. > > Indeed. > > I'm not sure what the qemu revisions thing is you're thinking of but I > think all the places where the source code matches `xen-unstable[^-]', > the actual effect is to treat `xen-unstable-smoke' the same way as > `xen-unstable'. "qemu revisions thing" is: @@ -340,7 +340,7 @@ case "$NEW_REVISION/$OLD_REVISION" in "$treeurl#$OLD_REVISION-$NEW_REVISION" \ case "$realtree" in - xen-4*|xen-unstable) + xen-4*|xen-unstable*) oldqemu=`./ap-qemu-revision $realtree $OLD_REVISION` newqemu=`./ap-qemu-revision $realtree $NEW_REVISION` if [ "$oldqemu" ] && [ "$newqemu" ]; then > > > Acked-by: Ian Campbell > > Thanks, > Ian.