diff mbox series

[PULL,26/26] .travis.yml: add softmmu check-tcg tests

Message ID 20190312170931.25013-27-alex.bennee@linaro.org (mailing list archive)
State New, archived
Headers show
Series [PULL,01/26] travis: Bump Xcode 10 image to 10.2 | expand

Commit Message

Alex Bennée March 12, 2019, 5:09 p.m. UTC
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
diff mbox series

Patch

diff --git a/.travis.yml b/.travis.yml
index b02e7318c1..980fc5c1eb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -265,6 +265,12 @@  matrix:
         - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
 
 
+    # Run check-tcg against linux-user
     - env:
         - CONFIG="--disable-system"
         - TEST_CMD="make -j3 check-tcg V=1"
+
+    # Run check-tcg against softmmu targets
+    - env:
+        - CONFIG="--target-list=xtensa-softmmu,arm-softmmu"
+        - TEST_CMD="make -j3 check-tcg V=1"