From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH OSSTEST] make-flight: Run separate nested jobs on AMD and Intel Date: Mon, 23 Nov 2015 10:49:26 +0000 Message-ID: <1448275766-22694-1-git-send-email-ian.campbell@citrix.com> References: <1448274027.4973.27.camel@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1448274027.4973.27.camel@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: ian.jackson@eu.citrix.com, xen-devel@lists.xen.org Cc: "Hu, Robert" , Ian Campbell List-Id: xen-devel@lists.xenproject.org nested HVM relies heavily on the underlying HVM implementation, which is different for Intel and AMD and therefore worth testing separately. Currently test-amd64-amd64-qemuu-nested is not tied to any specific vendor, split it into -amd and -intel jobs and set the host flags appropriately. Signed-off-by: Ian Campbell Cc: "Hu, Robert" --- make-flight | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/make-flight b/make-flight index 6f462ad..6b2b3ea 100755 --- a/make-flight +++ b/make-flight @@ -269,7 +269,9 @@ do_hvm_debian_nested_tests () { xen-4.3-testing) return;; esac - job_create_test test-$xenarch$kern-$dom0arch$qemuu_suffix-nested \ + for cpuvendor in amd intel; do + + job_create_test test-$xenarch$kern-$dom0arch$qemuu_suffix-nested-$cpuvendor \ test-nested xl $xenarch $dom0arch $qemuu_runvar \ l1_image=$(usual_debianhvm_image amd64) \ l1_vifmodel='e1000' \ @@ -277,7 +279,9 @@ do_hvm_debian_nested_tests () { l1_enable_nestedhvm='true' \ l2_image=$(usual_debianhvm_image amd64) \ bios=$bios \ - all_hostflags=$most_hostflags,hvm + all_hostflags=$most_hostflags,hvm-$cpuvendor + + done } branch_debianhvm_arch () { -- 2.6.1