From mboxrd@z Thu Jan 1 00:00:00 1970 From: "longtao.pang" Subject: [OSSTEST Nested PATCH v8 7/7] Add test job for nest test case Date: Mon, 13 Apr 2015 17:19:50 -0400 Message-ID: <1428959990-24199-8-git-send-email-longtaox.pang@intel.com> References: <1428959990-24199-1-git-send-email-longtaox.pang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1428959990-24199-1-git-send-email-longtaox.pang@intel.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@lists.xen.org Cc: wei.liu2@citrix.com, longtaox.pang@intel.com, Ian.Jackson@eu.citrix.com, Ian.Campbell@citrix.com, robert.hu@intel.com List-Id: xen-devel@lists.xenproject.org 1. This patch adds creation of the nested test job, when job creation procedure is invoked. 2. Set nested L1's vif model as e1000 by make-flight. Signed-off-by: longtao.pang --- Changes in v8: 1. Use 'nestedl1' and 'nestedl2' as L1 and L2's clearer name in nested test job. 2. Setting Debian_ISO as 'debian-7.2.0-amd64-CD-1.iso' in make-flight. --- make-flight | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/make-flight b/make-flight index cc8ecdb..40ca808 100755 --- a/make-flight +++ b/make-flight @@ -204,6 +204,25 @@ do_hvm_win7_x64_tests () { all_hostflags=$most_hostflags,hvm } +do_hvm_debian_nested_tests () { + if [ $xenarch != amd64 -a $dom0arch != amd64 ]; then + return + fi + + job_create_test test-$xenarch$kern-$dom0arch-nested test-nested xl \ + $xenarch $dom0arch \ + nestedl1_image=debian-7.2.0-amd64-CD-1.iso \ + nestedl2_image=debian-7.2.0-amd64-CD-1.iso \ + bios=seabios \ + kernbuildjob=build-amd64-pvops \ + kernkind=pvops \ + nestedl1_vifmodel='e1000' \ + nested_disk='15000' \ + nestedl1_memory='3072' \ + device_model_version=qemu-xen \ + all_hostflags=$most_hostflags,hvm +} + do_hvm_debian_test_one () { testname=$1 bios=$2 @@ -430,6 +449,7 @@ test_matrix_do_one () { done fi + do_hvm_debian_nested_tests #do_passthrough_tests } -- 1.7.10.4