* [PATCH] travis: remove TCI test
@ 2020-09-23 15:10 Paolo Bonzini
2020-09-23 16:04 ` Thomas Huth
0 siblings, 1 reply; 4+ messages in thread
From: Paolo Bonzini @ 2020-09-23 15:10 UTC (permalink / raw)
To: qemu-devel; +Cc: Thomas Huth, Alex Bennée
The TCI test is already performed on gitlab CI, and it fails because
Travis tests (generally) disable tools and therefore do not have
"make check-qtest". Just remove it.
Cc: Thomas Huth <thuth@redhat.com>
Cc: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
.travis.yml | 8 --------
1 file changed, 8 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index c75221dca3..5811215957 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -239,14 +239,6 @@ jobs:
- TEST_CMD=""
- # Check the TCG interpreter (TCI)
- - name: "GCC TCI"
- env:
- - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
- --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
- name: "GCC trace log,simple,syslog (user)"
env:
--
2.26.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] travis: remove TCI test
2020-09-23 15:10 [PATCH] travis: remove TCI test Paolo Bonzini
@ 2020-09-23 16:04 ` Thomas Huth
2020-09-23 16:26 ` Paolo Bonzini
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Huth @ 2020-09-23 16:04 UTC (permalink / raw)
To: Paolo Bonzini, qemu-devel; +Cc: Alex Bennée
On 23/09/2020 17.10, Paolo Bonzini wrote:
> The TCI test is already performed on gitlab CI, and it fails because
> Travis tests (generally) disable tools and therefore do not have
> "make check-qtest". Just remove it.
Huh? Where is it failing? It currently seems to work fine:
https://travis-ci.org/github/qemu/qemu/jobs/729440748
Anyway, since we already have similar job in the Gitlab-CI, I think it's
ok to remove it from Travis, so with the commit message tweaked:
Acked-by: Thomas Huth <thuth@redhat.com>
> Cc: Thomas Huth <thuth@redhat.com>
> Cc: Alex Bennée <alex.bennee@linaro.org>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> .travis.yml | 8 --------
> 1 file changed, 8 deletions(-)
>
> diff --git a/.travis.yml b/.travis.yml
> index c75221dca3..5811215957 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -239,14 +239,6 @@ jobs:
> - TEST_CMD=""
>
>
> - # Check the TCG interpreter (TCI)
> - - name: "GCC TCI"
> - env:
> - - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
> - --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
> - name: "GCC trace log,simple,syslog (user)"
> env:
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] travis: remove TCI test
2020-09-23 16:04 ` Thomas Huth
@ 2020-09-23 16:26 ` Paolo Bonzini
2020-09-23 16:31 ` Thomas Huth
0 siblings, 1 reply; 4+ messages in thread
From: Paolo Bonzini @ 2020-09-23 16:26 UTC (permalink / raw)
To: Thomas Huth, qemu-devel; +Cc: Alex Bennée
On 23/09/20 18:04, Thomas Huth wrote:
> On 23/09/2020 17.10, Paolo Bonzini wrote:
>> The TCI test is already performed on gitlab CI, and it fails because
>> Travis tests (generally) disable tools and therefore do not have
>> "make check-qtest". Just remove it.
> Huh? Where is it failing? It currently seems to work fine:
>
> https://travis-ci.org/github/qemu/qemu/jobs/729440748
>
> Anyway, since we already have similar job in the Gitlab-CI, I think it's
> ok to remove it from Travis, so with the commit message tweaked:
>
> Acked-by: Thomas Huth <thuth@redhat.com>
>
>
You're right, it's only broken on my own branch (due to "meson: qtest:
set "depends" correctly"). Currently we're running all qtests with a
QTEST_QEMU_IMG pointing to a nonexistent executable, and I'd rather
avoid that. In that patch I took the big hammer, but we can also decide
not to remove qtests for --disable-tools and add a little bit of
complication to tests/qtest/meson.build.
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] travis: remove TCI test
2020-09-23 16:26 ` Paolo Bonzini
@ 2020-09-23 16:31 ` Thomas Huth
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2020-09-23 16:31 UTC (permalink / raw)
To: Paolo Bonzini, qemu-devel; +Cc: Alex Bennée
On 23/09/2020 18.26, Paolo Bonzini wrote:
> On 23/09/20 18:04, Thomas Huth wrote:
>> On 23/09/2020 17.10, Paolo Bonzini wrote:
>>> The TCI test is already performed on gitlab CI, and it fails because
>>> Travis tests (generally) disable tools and therefore do not have
>>> "make check-qtest". Just remove it.
>> Huh? Where is it failing? It currently seems to work fine:
>>
>> https://travis-ci.org/github/qemu/qemu/jobs/729440748
>>
>> Anyway, since we already have similar job in the Gitlab-CI, I think it's
>> ok to remove it from Travis, so with the commit message tweaked:
>>
>> Acked-by: Thomas Huth <thuth@redhat.com>
>>
>>
>
> You're right, it's only broken on my own branch (due to "meson: qtest:
> set "depends" correctly"). Currently we're running all qtests with a
> QTEST_QEMU_IMG pointing to a nonexistent executable, and I'd rather
> avoid that. In that patch I took the big hammer, but we can also decide
> not to remove qtests for --disable-tools and add a little bit of
> complication to tests/qtest/meson.build.
I think there are only very few qtests that need one of the tools, so
I'd prefer if we could keep at least the ones enabled with
--disable-tools that do not require any of the tools.
Thomas
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-09-23 16:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-23 15:10 [PATCH] travis: remove TCI test Paolo Bonzini
2020-09-23 16:04 ` Thomas Huth
2020-09-23 16:26 ` Paolo Bonzini
2020-09-23 16:31 ` Thomas Huth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).