aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2017-02-23 19:34:16 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2017-02-23 19:34:16 +0000
commitccb46c69fa17cb34b08ba0990ff18d94cfa0f162 (patch)
treec3b0e954cd1842b85f931b55d176d6ebd0fcbf9b
parentec3c2acd8e0633368750cf04a156f04d0854be9a (diff)
tcwg-container-christophe: Use different testers for armv7 and armv8.
Test armv8l* toolchains on tx1_32 boards (armv8 hw), and arm* toolchains on tk1_32 boards (armv7 hw). Change-Id: I82db7e3c7be8350115ac012cd3c5f3dc812e40e8
-rw-r--r--tcwg-container-christophe.yaml7
1 files changed, 6 insertions, 1 deletions
diff --git a/tcwg-container-christophe.yaml b/tcwg-container-christophe.yaml
index c0c08eb4a1..3931579fab 100644
--- a/tcwg-container-christophe.yaml
+++ b/tcwg-container-christophe.yaml
@@ -218,6 +218,7 @@
"cross_main"-"yes"-*|"cross_main"-"x86_64-host"-"amd64"|"cross_main"-"x86_64-host"-"i386")
case "$target" in
aarch64*) test_container_arch=arm64 ;;
+ armv8*) test_container_arch=armv8hf ;;
arm*) test_container_arch=armhf ;;
*) echo "ERROR: Wrong target $target"; exit 1 ;;
esac
@@ -226,7 +227,11 @@
# tcwg-tx1-0[34]: AArch32 (armv8) and AArch64
case ${test_container_arch} in
armhf)
- tester_labels="tcwg-tk1_32-test tcwg-tx1_32-test"
+ tester_labels="tcwg-tk1_32-test"
+ ;;
+ armv8hf)
+ tester_labels="tcwg-tx1_32-test"
+ test_container_arch=armhf
;;
arm64)
tester_labels="tcwg-tx1_64-test"