]> xenbits.xensource.com Git - people/royger/osstest.git/commitdiff
osstest: limit PVH tests to Xen >= 4.10
authorRoger Pau Monne <roger.pau@citrix.com>
Tue, 3 Oct 2017 10:21:37 +0000 (11:21 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 3 Oct 2017 12:59:46 +0000 (13:59 +0100)
Older Xen versions don't support the 'type' xl option used to create a
PVHv2 guest, which we are about to switch to.

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
make-flight

index 03ff343b06af872734ed34d8cac746f016f1eae2..9ae779a912ea9d25fee531e347013feeef2dac9e 100755 (executable)
@@ -719,14 +719,10 @@ test_matrix_do_one () {
   *)               test_xend=n ;;
   esac
 
-  # PVH tests for versions >= 4.5 only
+  # PVH tests for versions >= 4.10 only
   case "$xenbranch" in
   xen-3.*-testing) test_pvh=n ;;
-  xen-4.0-testing) test_pvh=n ;;
-  xen-4.1-testing) test_pvh=n ;;
-  xen-4.2-testing) test_pvh=n ;;
-  xen-4.3-testing) test_pvh=n ;;
-  xen-4.4-testing) test_pvh=n ;;
+  xen-4.?-testing) test_pvh=n ;;
   *)               test_pvh=y ;;
   esac