From patchwork Mon Jan 4 15:08:30 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ian Campbell X-Patchwork-Id: 7948421 Return-Path: X-Original-To: patchwork-xen-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 525D09F1CC for ; Mon, 4 Jan 2016 15:12:32 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5FB3A20382 for ; Mon, 4 Jan 2016 15:12:31 +0000 (UTC) Received: from lists.xen.org (lists.xenproject.org [50.57.142.19]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7E5EA2037F for ; Mon, 4 Jan 2016 15:12:30 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=lists.xen.org) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aG6m5-0002ds-PA; Mon, 04 Jan 2016 15:10:21 +0000 Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aG6m4-0002dn-Q8 for xen-devel@lists.xenproject.org; Mon, 04 Jan 2016 15:10:20 +0000 Received: from [193.109.254.147] by server-10.bemta-14.messagelabs.com id EB/B3-25438-C5B8A865; Mon, 04 Jan 2016 15:10:20 +0000 X-Env-Sender: prvs=8049774f7=Ian.Campbell@citrix.com X-Msg-Ref: server-9.tower-27.messagelabs.com!1451920218!14531666!1 X-Originating-IP: [66.165.176.63] X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: VHJ1c3RlZCBJUDogNjYuMTY1LjE3Ni42MyA9PiAzMDYwNDg=\n, received_headers: No Received headers X-StarScan-Received: X-StarScan-Version: 7.35.1; banners=-,-,- X-VirusChecked: Checked Received: (qmail 5255 invoked from network); 4 Jan 2016 15:10:19 -0000 Received: from smtp02.citrix.com (HELO SMTP02.CITRIX.COM) (66.165.176.63) by server-9.tower-27.messagelabs.com with RC4-SHA encrypted SMTP; 4 Jan 2016 15:10:19 -0000 X-IronPort-AV: E=Sophos;i="5.20,521,1444694400"; d="scan'208";a="328867721" Message-ID: <1451920110.13361.150.camel@citrix.com> From: Ian Campbell To: Ian Jackson Date: Mon, 4 Jan 2016 15:08:30 +0000 In-Reply-To: <22154.35021.750846.695785@mariner.uk.xensource.com> References: <5677F6A102000078000C1D77@prv-mh.provo.novell.com> <1451902780.13361.18.camel@citrix.com> <22154.35021.750846.695785@mariner.uk.xensource.com> X-Mailer: Evolution 3.18.2-1 MIME-Version: 1.0 X-DLP: MIA1 Cc: xen-devel , osstest-admin@xenproject.org, Jan Beulich Subject: Re: [Xen-devel] [xen-4.3-testing test] 66638: regressions - FAIL X-BeenThere: xen-devel@lists.xen.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On Mon, 2016-01-04 at 14:59 +0000, Ian Jackson wrote: > Ian Campbell writes ("Re: [Xen-devel] [xen-4.3-testing test] 66638: > regressions - FAIL"): > > This is failing to build 4.2 (-prev job in a 4.3 branch), and I think > > would > > be fixed by a backport to that branch of: > > > > commit 665ddd98c4d418ced6f303b79b7a6322c69b7247 > > Author: Olaf Hering > > Date:   Thu Jun 27 16:56:18 2013 +0200 > > I think we should probably drop this job in the 4.3 branch (and > earlier).  4.2 has had no commits since October - in particular, none > of the recent security fixes - and I would be reluctant to give it a > veneer of activity. Now that you mention it, I thought I/we had done this already. Ah, seems like I never actually posted the following. sorry. 8<------ From 3d4a13e90ece4a0b372dd16157e4c5a8b8300fc6 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Mon, 16 Nov 2015 10:24:50 +0000 Subject: [PATCH] Only test migrupgrade from 4.5 onwards Signed-off-by: Ian Campbell Acked-by: Ian Jackson ---  mfi-common | 4 ++++  1 file changed, 4 insertions(+) diff --git a/mfi-common b/mfi-common index 0c0ca3f..b739c7d 100644 --- a/mfi-common +++ b/mfi-common @@ -45,6 +45,10 @@ branch_wants_migrupgrade_tests () {    case "$branch" in      xen-3.*-testing) return 1 ;;      xen-4.0-testing) return 1 ;; +    xen-4.1-testing) return 1 ;; +    xen-4.2-testing) return 1 ;; +    xen-4.3-testing) return 1 ;; +    xen-4.4-testing) return 1 ;;      xen-*) return 0;;      *) return 1 ;;    esac