From: Ian Campbell <ian.campbell@citrix.com>
To: ian.jackson@eu.citrix.com, xen-devel@lists.xen.org
Subject: Re: [PATCH OSSTEST] Arrange to test migration from the previous Xen version
Date: Fri, 24 Jul 2015 14:58:45 +0100 [thread overview]
Message-ID: <1437746325.24746.111.camel@citrix.com> (raw)
In-Reply-To: <1437744312-30373-1-git-send-email-ian.campbell@citrix.com>
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
next prev parent reply other threads:[~2015-07-24 13:58 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-24 13:25 [PATCH OSSTEST] Arrange to test migration from the previous Xen version Ian Campbell
2015-07-24 13:55 ` Ian Jackson
2015-07-24 14:03 ` Ian Campbell
2015-07-24 15:05 ` Ian Jackson
2015-07-24 13:58 ` Ian Campbell [this message]
2015-07-24 15:04 ` Ian Jackson
2015-07-24 15:06 ` Ian Campbell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1437746325.24746.111.camel@citrix.com \
--to=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.