diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-02-28 10:18:43 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-03-12 17:05:21 +0000 |
commit | dab3a7c0f54cedc542205fb6f29184b510dfe479 (patch) | |
tree | 7a777bde92d9e73373847a1de239287f9ab9429f /.travis.yml | |
parent | df2bb38eda2def33cefd3a7ee993b2aff02c4829 (diff) | |
download | qemu-dab3a7c0f54cedc542205fb6f29184b510dfe479.zip |
.travis.yml: add softmmu check-tcg tests
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
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" |