From: Ian Jackson Date: Fri, 6 Jul 2018 11:05:37 +0000 (+0100) Subject: armhf, xsm: Drop XSM tests on 32-bit ARM X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9c1c42e00b2c95e87a01faaa6ba2f9e94c669af2;p=people%2Froyger%2Fosstest.git armhf, xsm: Drop XSM tests on 32-bit ARM We are at the limit of ARM capacity, which has not kept pace with X86 expansion. New hardware is on the way but it is not here yet. Dropping the XSM tests drops one test, but also one build, which saves considerable effort. Builds are currently the bottleneck, because we avoid building on the unreliable Arndale boards. Signed-off-by: Ian Jackson Acked-by: Julien Grall --- diff --git a/mfi-common b/mfi-common index a73b138..01ab5d1 100644 --- a/mfi-common +++ b/mfi-common @@ -64,7 +64,12 @@ xsm_variants () { xen-4.3-testing) echo "false";; xen-4.4-testing) echo "false";; xen-4.5-testing) echo "false";; - *) echo "false true"; + *) + case "$arch" in + armhf) echo 'false' ;; + *) + echo "false true";; + esac esac }