From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Liu Subject: [PATCH OSSTEST v2 13/13] make-flight, mfi-common: create live migration test for libvirt Date: Sun, 12 Jul 2015 17:20:36 +0100 Message-ID: <1436718036-7985-14-git-send-email-wei.liu2@citrix.com> References: <1436718036-7985-1-git-send-email-wei.liu2@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZEKNY-00040b-CU for xen-devel@lists.xenproject.org; Sun, 12 Jul 2015 16:45:24 +0000 In-Reply-To: <1436718036-7985-1-git-send-email-wei.liu2@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: Xen-devel Cc: Anthony Perard , ian.jackson@eu.citrix.com, Wei Liu , ian.campbell@citrix.com List-Id: xen-devel@lists.xenproject.org Note that we start testing libvirt migration for 4.5 and above. Signed-off-by: Wei Liu Cc: Ian Campbell Cc: Ian Jackson Acked-by: Ian Campbell --- Cc: Anthony Perard Anthony, can you advise which Xen versions should we test? --- make-flight | 13 +++++++++++-- mfi-common | 5 ++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/make-flight b/make-flight index 596b925..5c4fbb6 100755 --- a/make-flight +++ b/make-flight @@ -459,11 +459,20 @@ test_matrix_do_one () { done # qemuu_suffix # Test live migration - job_create_test test-$xenarch$kern-$dom0arch-pair test-pair \ - $pairtoolstack $xenarch $dom0arch \ + for toolstack in $pairtoolstack; do + # Don't change test case name for old test cases with xl and xend + if [ x$toolstack = xxl -o x$toolstack = xxend ]; then + toolstack_suffix="" + else + toolstack_suffix="-$toolstack" + fi + job_create_test test-$xenarch$kern-$dom0arch$toolstack_suffix-pair \ + test-pair \ + $toolstack $xenarch $dom0arch \ !host !host_hostflags \ $debian_runvars \ all_hostflags=$most_hostflags,equiv-1 + done if [ x$test_pvh = xy -a $xenarch = amd64 -a $dom0arch = amd64 ]; then diff --git a/mfi-common b/mfi-common index e517019..584627f 100644 --- a/mfi-common +++ b/mfi-common @@ -316,7 +316,10 @@ test_matrix_iterate () { xen-3.*-testing) pairtoolstack=xend ;; xen-4.0-testing) pairtoolstack=xend ;; xen-4.1-testing) pairtoolstack=xend ;; - *) pairtoolstack=xl ;; + xen-4.2-testing) pairtoolstack=xl ;; + xen-4.3-testing) pairtoolstack=xl ;; + xen-4.4-testing) pairtoolstack=xl ;; + *) pairtoolstack="xl libvirt" ;; esac for xenarch in ${TEST_ARCHES- i386 amd64 armhf } ; do -- 1.9.1