|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH OSSTEST] Arrange to test migration from the previous Xen version
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
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |