[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 21/27] make-flight: Contemplate varying architecture for Debian HVM
In the Debian hvm tests, ask branch_debianhvm_arch for the architecture to use. This currently prints only amd64. While we are here, provide some comments about the (somewhat confusing) argument conventions of do_hvm_debian_test_one. No functional change yet. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- make-flight | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/make-flight b/make-flight index 6db3550..2246411 100755 --- a/make-flight +++ b/make-flight @@ -236,12 +236,20 @@ do_hvm_win7_x64_tests () { all_hostflags=$most_hostflags,hvm } +branch_debianhvm_arch () { + case $branch in + *) echo amd64;; + esac +} + do_hvm_debian_test_one () { testname=$1 toolstack=$2 bios=$3 - xsm=$4 - stubdom=$5 + xsm=$4 # 'false' or 'true' + stubdom=$5 # '' (or unset) or 'true' + + local arch=$(branch_debianhvm_arch) stubdom_suffix="" stubdom_runvar="" @@ -250,11 +258,11 @@ do_hvm_debian_test_one () { stubdom_runvar="debianhvm_stubdom=$stubdom" fi - job_create_test test-$xenarch$kern-$dom0arch-$toolstack$qemuu_suffix$stubdom_suffix-$testname-amd64\ + job_create_test test-$xenarch$kern-$dom0arch-$toolstack$qemuu_suffix$stubdom_suffix-$testname-$arch\ test-debianhvm $toolstack $xenarch $dom0arch $qemuu_runvar \ enable_xsm=$xsm \ $stubdom_runvar \ - debianhvm_image=debian-7.2.0-amd64-CD-1.iso \ + debianhvm_image=debian-7.2.0-$arch-CD-1.iso \ bios=$bios \ all_hostflags=$most_hostflags,hvm } -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |