]> xenbits.xensource.com Git - people/royger/osstest.git/commitdiff
armhf, xsm: Drop XSM tests on 32-bit ARM
authorIan Jackson <ian.jackson@eu.citrix.com>
Fri, 6 Jul 2018 11:05:37 +0000 (12:05 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Mon, 9 Jul 2018 10:47:06 +0000 (11:47 +0100)
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 <Ian.Jackson@eu.citrix.com>
Acked-by: Julien Grall <julien.grall@arm.com>
mfi-common

index a73b138d1cb618c30f23c1aecb6000176cd08200..01ab5d15d03db58fa8189e6db9d29e9409b568ca 100644 (file)
@@ -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
 }