[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 2/2] travis.yml: Run tcg tests with tci
From: |
Stefan Weil |
Subject: |
Re: [PATCH v2 2/2] travis.yml: Run tcg tests with tci |
Date: |
Thu, 28 Nov 2019 22:06:01 +0100 |
User-agent: |
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:60.0) Gecko/20100101 Thunderbird/60.9.1 |
Am 28.11.19 um 16:35 schrieb Thomas Huth:
> So far we only have compile coverage for tci. But since commit
> 2f160e0f9797c7522bfd0d09218d0c9340a5137c ("tci: Add implementation
> for INDEX_op_ld16u_i64") has been included now, we can also run the
> "tcg" and "qtest" tests with tci, so let's enable them in Travis now.
> Since we don't gain much additional test coverage by compiling all
> targets, and TCI is broken e.g. with the Sparc targets, we also limit
As far as I know it is broken with Sparc hosts (not Sparc targets).
I tested without limiting the target list on an x86_64 host, and the
tests passed.
> the target list to a reasonable subset now (which should still get
> us test coverage by tests/boot-serial-test for example).
>
> Signed-off-by: Thomas Huth <address@hidden>
> ---
> .travis.yml | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/.travis.yml b/.travis.yml
> index c09b6a0014..de7559e777 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -215,10 +215,11 @@ matrix:
> - TEST_CMD=""
>
>
> - # We manually include builds which we disable "make check" for
> + # Check the TCG interpreter (TCI)
> - env:
> - - CONFIG="--enable-debug --enable-tcg-interpreter"
> - - TEST_CMD=""
> + - CONFIG="--enable-debug --enable-tcg-interpreter
> --disable-containers
You could also --disable-kvm. It should not be needed, and disabling it
might need less build resources.
> +
> --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
> + - TEST_CMD="make check-qtest check-tcg V=1"
>
>
> # We don't need to exercise every backend with every front-end
Thank you for adding these tests.
Tested-by: Stefan Weil <address@hidden>