@@ -823,7 +823,22 @@ test_matrix_do_one () {
#do_passthrough_tests
do_pygrub_tests
- do_pvgrub_tests
+
+ # pvgrub1 tests for version < XXX only
+ case "$xenbranch" in
+ xen-4.3-testing) test_pvgrub=y ;;
+ xen-4.4-testing) test_pvgrub=y ;;
+ xen-4.5-testing) test_pvgrub=y ;;
+ xen-4.6-testing) test_pvgrub=y ;;
+ xen-4.7-testing) test_pvgrub=y ;;
+ xen-4.8-testing) test_pvgrub=y ;;
+ xen-4.9-testing) test_pvgrub=y ;;
+ *) test_pvgrub=n ;;
+ esac
+
+ if [ x$test_pvgrub = xy ]; then
+ do_pvgrub_tests
+ fi
do_xtf_tests
do_livepatch_tests
XXX Need to pin down the version of Xen when the upgrade to stretch is complete because osstest configuration is branched for each version. Signed-off-by: Wei Liu <wei.liu2@citrix.com> --- make-flight | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-)