* [PATCH-for-5.2 v2 1/4] s390x: fix build for --without-default-devices
2020-11-04 8:43 [PATCH-for-5.2 v2 0/4] ci: Move --without-default-devices job from Travis to GitLab Philippe Mathieu-Daudé
@ 2020-11-04 8:43 ` Philippe Mathieu-Daudé
2020-11-04 8:43 ` [PATCH-for-5.2 v2 2/4] hw/9pfs: Fix Kconfig dependency problem between 9pfs and Xen Philippe Mathieu-Daudé
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-04 8:43 UTC (permalink / raw)
To: qemu-devel
Cc: Fam Zheng, Thomas Huth, Daniel P . Berrange, Matthew Rosato,
David Hildenbrand, Philippe Mathieu-Daudé, Cornelia Huck,
Christian Schoenebeck, Greg Kurz, Wainer dos Santos Moschetta,
Halil Pasic, Christian Borntraeger, qemu-s390x, Paolo Bonzini,
Alex Bennée, Richard Henderson
From: Cornelia Huck <cohuck@redhat.com>
s390-pci-vfio.c calls into the vfio code, so we need it to be
built conditionally on vfio (which implies CONFIG_LINUX).
Reported-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Fixes: cd7498d07fbb ("s390x/pci: Add routine to get the vfio dma available count")
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Message-Id: <20201103123237.718242-1-cohuck@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
include/hw/s390x/s390-pci-vfio.h | 3 ++-
hw/s390x/meson.build | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/hw/s390x/s390-pci-vfio.h b/include/hw/s390x/s390-pci-vfio.h
index c7984905b3b..ff708aef500 100644
--- a/include/hw/s390x/s390-pci-vfio.h
+++ b/include/hw/s390x/s390-pci-vfio.h
@@ -13,8 +13,9 @@
#define HW_S390_PCI_VFIO_H
#include "hw/s390x/s390-pci-bus.h"
+#include CONFIG_DEVICES
-#ifdef CONFIG_LINUX
+#ifdef CONFIG_VFIO
bool s390_pci_update_dma_avail(int fd, unsigned int *avail);
S390PCIDMACount *s390_pci_start_dma_count(S390pciState *s,
S390PCIBusDevice *pbdev);
diff --git a/hw/s390x/meson.build b/hw/s390x/meson.build
index f4663a83551..2a7818d94b9 100644
--- a/hw/s390x/meson.build
+++ b/hw/s390x/meson.build
@@ -27,7 +27,7 @@
))
s390x_ss.add(when: 'CONFIG_S390_CCW_VIRTIO', if_true: files('s390-virtio-ccw.c'))
s390x_ss.add(when: 'CONFIG_TERMINAL3270', if_true: files('3270-ccw.c'))
-s390x_ss.add(when: 'CONFIG_LINUX', if_true: files('s390-pci-vfio.c'))
+s390x_ss.add(when: 'CONFIG_VFIO', if_true: files('s390-pci-vfio.c'))
virtio_ss = ss.source_set()
virtio_ss.add(files('virtio-ccw.c'))
--
2.26.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH-for-5.2 v2 2/4] hw/9pfs: Fix Kconfig dependency problem between 9pfs and Xen
2020-11-04 8:43 [PATCH-for-5.2 v2 0/4] ci: Move --without-default-devices job from Travis to GitLab Philippe Mathieu-Daudé
2020-11-04 8:43 ` [PATCH-for-5.2 v2 1/4] s390x: fix build for --without-default-devices Philippe Mathieu-Daudé
@ 2020-11-04 8:43 ` Philippe Mathieu-Daudé
2020-11-04 9:43 ` Greg Kurz
2020-11-04 11:27 ` Paolo Bonzini
2020-11-04 8:43 ` [PATCH-for-5.2 v2 3/4] gitlab-ci: Add a job to cover the --without-default-devices config Philippe Mathieu-Daudé
2020-11-04 8:43 ` [PATCH-for-5.2 v2 4/4] travis-ci: Remove the --without-default-devices job Philippe Mathieu-Daudé
3 siblings, 2 replies; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-04 8:43 UTC (permalink / raw)
To: qemu-devel
Cc: Fam Zheng, Thomas Huth, Stefano Stabellini, Daniel P . Berrange,
Matthew Rosato, David Hildenbrand, Philippe Mathieu-Daudé,
Cornelia Huck, Christian Schoenebeck, Greg Kurz,
Wainer dos Santos Moschetta, Halil Pasic, Christian Borntraeger,
qemu-s390x, xen-devel, Anthony Perard, Paolo Bonzini,
Alex Bennée, Paul Durrant, Richard Henderson
Fixes './configure --without-default-devices --enable-xen' build:
/usr/bin/ld: libcommon.fa.p/hw_xen_xen-legacy-backend.c.o: in function `xen_be_register_common':
hw/xen/xen-legacy-backend.c:754: undefined reference to `xen_9pfs_ops'
/usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x8): undefined reference to `local_ops'
/usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x20): undefined reference to `synth_ops'
/usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x38): undefined reference to `proxy_ops'
collect2: error: ld returned 1 exit status
Fixes: b2c00bce54c ("meson: convert hw/9pfs, cleanup")
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
I'm not sure b2c00bce54c is the real culprit
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Anthony Perard <anthony.perard@citrix.com>
Cc: Paul Durrant <paul@xen.org>
Cc: xen-devel@lists.xenproject.org
Cc: Greg Kurz <groug@kaod.org>
Cc: Christian Schoenebeck <qemu_oss@crudebyte.com>
---
hw/9pfs/Kconfig | 4 ----
hw/9pfs/meson.build | 2 +-
2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/hw/9pfs/Kconfig b/hw/9pfs/Kconfig
index d3ebd737301..3ae57496613 100644
--- a/hw/9pfs/Kconfig
+++ b/hw/9pfs/Kconfig
@@ -2,12 +2,8 @@ config FSDEV_9P
bool
depends on VIRTFS
-config 9PFS
- bool
-
config VIRTIO_9P
bool
default y
depends on VIRTFS && VIRTIO
select FSDEV_9P
- select 9PFS
diff --git a/hw/9pfs/meson.build b/hw/9pfs/meson.build
index cc094262122..99be5d91196 100644
--- a/hw/9pfs/meson.build
+++ b/hw/9pfs/meson.build
@@ -15,6 +15,6 @@
'coxattr.c',
))
fs_ss.add(when: 'CONFIG_XEN', if_true: files('xen-9p-backend.c'))
-softmmu_ss.add_all(when: 'CONFIG_9PFS', if_true: fs_ss)
+softmmu_ss.add_all(when: 'CONFIG_FSDEV_9P', if_true: fs_ss)
specific_ss.add(when: 'CONFIG_VIRTIO_9P', if_true: files('virtio-9p-device.c'))
--
2.26.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH-for-5.2 v2 2/4] hw/9pfs: Fix Kconfig dependency problem between 9pfs and Xen
2020-11-04 8:43 ` [PATCH-for-5.2 v2 2/4] hw/9pfs: Fix Kconfig dependency problem between 9pfs and Xen Philippe Mathieu-Daudé
@ 2020-11-04 9:43 ` Greg Kurz
2020-11-04 11:27 ` Paolo Bonzini
1 sibling, 0 replies; 9+ messages in thread
From: Greg Kurz @ 2020-11-04 9:43 UTC (permalink / raw)
To: Philippe Mathieu-Daudé
Cc: Fam Zheng, Thomas Huth, Stefano Stabellini, Daniel P . Berrange,
Matthew Rosato, David Hildenbrand, Cornelia Huck,
Christian Schoenebeck, qemu-devel, Wainer dos Santos Moschetta,
Halil Pasic, Christian Borntraeger, qemu-s390x, xen-devel,
Anthony Perard, Paolo Bonzini, Alex Bennée, Paul Durrant,
Richard Henderson
On Wed, 4 Nov 2020 09:43:25 +0100
Philippe Mathieu-Daudé <philmd@redhat.com> wrote:
> Fixes './configure --without-default-devices --enable-xen' build:
>
> /usr/bin/ld: libcommon.fa.p/hw_xen_xen-legacy-backend.c.o: in function `xen_be_register_common':
> hw/xen/xen-legacy-backend.c:754: undefined reference to `xen_9pfs_ops'
> /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x8): undefined reference to `local_ops'
> /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x20): undefined reference to `synth_ops'
> /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x38): undefined reference to `proxy_ops'
> collect2: error: ld returned 1 exit status
>
> Fixes: b2c00bce54c ("meson: convert hw/9pfs, cleanup")
> Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> I'm not sure b2c00bce54c is the real culprit
>
FWIW this commit introduced the 9PFS config which isn't used
anywhere. Backends depend on FSDEV_9P which itself depends
on VIRTFS. So I tend to think b2c00bce54c is the culprit
but _of couse_ I could be wrong :)
Anyway, this patch (+ patch 1) fix the build break mentioned
in the changelog so:
Acked-by: Greg Kurz <groug@kaod.org>
Tested-by: Greg Kurz <groug@kaod.org>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Anthony Perard <anthony.perard@citrix.com>
> Cc: Paul Durrant <paul@xen.org>
> Cc: xen-devel@lists.xenproject.org
> Cc: Greg Kurz <groug@kaod.org>
> Cc: Christian Schoenebeck <qemu_oss@crudebyte.com>
> ---
> hw/9pfs/Kconfig | 4 ----
> hw/9pfs/meson.build | 2 +-
> 2 files changed, 1 insertion(+), 5 deletions(-)
>
> diff --git a/hw/9pfs/Kconfig b/hw/9pfs/Kconfig
> index d3ebd737301..3ae57496613 100644
> --- a/hw/9pfs/Kconfig
> +++ b/hw/9pfs/Kconfig
> @@ -2,12 +2,8 @@ config FSDEV_9P
> bool
> depends on VIRTFS
>
> -config 9PFS
> - bool
> -
> config VIRTIO_9P
> bool
> default y
> depends on VIRTFS && VIRTIO
> select FSDEV_9P
> - select 9PFS
> diff --git a/hw/9pfs/meson.build b/hw/9pfs/meson.build
> index cc094262122..99be5d91196 100644
> --- a/hw/9pfs/meson.build
> +++ b/hw/9pfs/meson.build
> @@ -15,6 +15,6 @@
> 'coxattr.c',
> ))
> fs_ss.add(when: 'CONFIG_XEN', if_true: files('xen-9p-backend.c'))
> -softmmu_ss.add_all(when: 'CONFIG_9PFS', if_true: fs_ss)
> +softmmu_ss.add_all(when: 'CONFIG_FSDEV_9P', if_true: fs_ss)
>
> specific_ss.add(when: 'CONFIG_VIRTIO_9P', if_true: files('virtio-9p-device.c'))
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH-for-5.2 v2 2/4] hw/9pfs: Fix Kconfig dependency problem between 9pfs and Xen
2020-11-04 8:43 ` [PATCH-for-5.2 v2 2/4] hw/9pfs: Fix Kconfig dependency problem between 9pfs and Xen Philippe Mathieu-Daudé
2020-11-04 9:43 ` Greg Kurz
@ 2020-11-04 11:27 ` Paolo Bonzini
1 sibling, 0 replies; 9+ messages in thread
From: Paolo Bonzini @ 2020-11-04 11:27 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: Fam Zheng, Thomas Huth, Stefano Stabellini, Daniel P . Berrange,
Matthew Rosato, David Hildenbrand, Cornelia Huck,
Christian Schoenebeck, Greg Kurz, Wainer dos Santos Moschetta,
Halil Pasic, Christian Borntraeger, qemu-s390x, Anthony Perard,
xen-devel, Alex Bennée, Paul Durrant, Richard Henderson
On 04/11/20 09:43, Philippe Mathieu-Daudé wrote:
> Fixes './configure --without-default-devices --enable-xen' build:
>
> /usr/bin/ld: libcommon.fa.p/hw_xen_xen-legacy-backend.c.o: in function `xen_be_register_common':
> hw/xen/xen-legacy-backend.c:754: undefined reference to `xen_9pfs_ops'
> /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x8): undefined reference to `local_ops'
> /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x20): undefined reference to `synth_ops'
> /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x38): undefined reference to `proxy_ops'
> collect2: error: ld returned 1 exit status
>
> Fixes: b2c00bce54c ("meson: convert hw/9pfs, cleanup")
> Suggested-by: Paolo Bonzini<pbonzini@redhat.com>
> Signed-off-by: Philippe Mathieu-Daudé<philmd@redhat.com>
> ---
> I'm not sure b2c00bce54c is the real culprit
I think it is, probably a wrong conflict resolution.
Paolo
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH-for-5.2 v2 3/4] gitlab-ci: Add a job to cover the --without-default-devices config
2020-11-04 8:43 [PATCH-for-5.2 v2 0/4] ci: Move --without-default-devices job from Travis to GitLab Philippe Mathieu-Daudé
2020-11-04 8:43 ` [PATCH-for-5.2 v2 1/4] s390x: fix build for --without-default-devices Philippe Mathieu-Daudé
2020-11-04 8:43 ` [PATCH-for-5.2 v2 2/4] hw/9pfs: Fix Kconfig dependency problem between 9pfs and Xen Philippe Mathieu-Daudé
@ 2020-11-04 8:43 ` Philippe Mathieu-Daudé
2020-11-04 9:17 ` Thomas Huth
2020-11-04 8:43 ` [PATCH-for-5.2 v2 4/4] travis-ci: Remove the --without-default-devices job Philippe Mathieu-Daudé
3 siblings, 1 reply; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-04 8:43 UTC (permalink / raw)
To: qemu-devel
Cc: Fam Zheng, Thomas Huth, Daniel P . Berrange, Matthew Rosato,
David Hildenbrand, Philippe Mathieu-Daudé, Cornelia Huck,
Christian Schoenebeck, Greg Kurz, Wainer dos Santos Moschetta,
Halil Pasic, Christian Borntraeger, qemu-s390x, Paolo Bonzini,
Alex Bennée, Richard Henderson
We test './configure --without-default-devices' since commit
20885b5b169 (".travis.yml: test that no-default-device builds
do not regress") in Travis-CI.
Since having a single CI to look at is easier, and GitLab-CI
is the preferred one, add the equivalent job there.
As smoke test, run the qtests on the AVR target. Since the
boards are simple SoC, there is not issue with unavailable
default devices there.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
.gitlab-ci.yml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3b15ae5c302..321cca2c216 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -262,6 +262,13 @@ build-user-plugins:
MAKE_CHECK_ARGS: check-tcg
timeout: 1h 30m
+build-system-ubuntu-without-default-devices:
+ <<: *native_build_job_definition
+ variables:
+ IMAGE: ubuntu2004
+ CONFIGURE_ARGS: --without-default-devices --disable-user --disable-tools --disable-docs
+ MAKE_CHECK_ARGS: check-qtest-avr
+
build-clang:
<<: *native_build_job_definition
variables:
--
2.26.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH-for-5.2 v2 3/4] gitlab-ci: Add a job to cover the --without-default-devices config
2020-11-04 8:43 ` [PATCH-for-5.2 v2 3/4] gitlab-ci: Add a job to cover the --without-default-devices config Philippe Mathieu-Daudé
@ 2020-11-04 9:17 ` Thomas Huth
2020-11-04 11:46 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 9+ messages in thread
From: Thomas Huth @ 2020-11-04 9:17 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: Fam Zheng, Daniel P . Berrange, Matthew Rosato, David Hildenbrand,
Cornelia Huck, Christian Schoenebeck, Greg Kurz,
Wainer dos Santos Moschetta, Halil Pasic, Christian Borntraeger,
qemu-s390x, Paolo Bonzini, Alex Bennée, Richard Henderson
On 04/11/2020 09.43, Philippe Mathieu-Daudé wrote:
> We test './configure --without-default-devices' since commit
> 20885b5b169 (".travis.yml: test that no-default-device builds
> do not regress") in Travis-CI.
>
> Since having a single CI to look at is easier, and GitLab-CI
> is the preferred one, add the equivalent job there.
>
> As smoke test, run the qtests on the AVR target. Since the
> boards are simple SoC, there is not issue with unavailable
> default devices there.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> .gitlab-ci.yml | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 3b15ae5c302..321cca2c216 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -262,6 +262,13 @@ build-user-plugins:
> MAKE_CHECK_ARGS: check-tcg
> timeout: 1h 30m
>
> +build-system-ubuntu-without-default-devices:
> + <<: *native_build_job_definition
> + variables:
> + IMAGE: ubuntu2004
> + CONFIGURE_ARGS: --without-default-devices --disable-user --disable-tools --disable-docs
> + MAKE_CHECK_ARGS: check-qtest-avr
As mentioned in my other mail, we can also use -m68k if you prefer that
instead of -avr.
> build-clang:
> <<: *native_build_job_definition
> variables:
>
Reviewed-by: Thomas Huth <thuth@redhat.com>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH-for-5.2 v2 3/4] gitlab-ci: Add a job to cover the --without-default-devices config
2020-11-04 9:17 ` Thomas Huth
@ 2020-11-04 11:46 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-04 11:46 UTC (permalink / raw)
To: Thomas Huth, qemu-devel
Cc: Fam Zheng, Daniel P . Berrange, Matthew Rosato, David Hildenbrand,
Cornelia Huck, Christian Schoenebeck, Greg Kurz,
Wainer dos Santos Moschetta, Halil Pasic, Christian Borntraeger,
qemu-s390x, Paolo Bonzini, Alex Bennée, Richard Henderson
On 11/4/20 10:17 AM, Thomas Huth wrote:
> On 04/11/2020 09.43, Philippe Mathieu-Daudé wrote:
>> We test './configure --without-default-devices' since commit
>> 20885b5b169 (".travis.yml: test that no-default-device builds
>> do not regress") in Travis-CI.
>>
>> Since having a single CI to look at is easier, and GitLab-CI
>> is the preferred one, add the equivalent job there.
>>
>> As smoke test, run the qtests on the AVR target. Since the
>> boards are simple SoC, there is not issue with unavailable
>> default devices there.
>>
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> ---
>> .gitlab-ci.yml | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
>> index 3b15ae5c302..321cca2c216 100644
>> --- a/.gitlab-ci.yml
>> +++ b/.gitlab-ci.yml
>> @@ -262,6 +262,13 @@ build-user-plugins:
>> MAKE_CHECK_ARGS: check-tcg
>> timeout: 1h 30m
>>
>> +build-system-ubuntu-without-default-devices:
>> + <<: *native_build_job_definition
>> + variables:
>> + IMAGE: ubuntu2004
>> + CONFIGURE_ARGS: --without-default-devices --disable-user --disable-tools --disable-docs
>> + MAKE_CHECK_ARGS: check-qtest-avr
>
> As mentioned in my other mail, we can also use -m68k if you prefer that
> instead of -avr.
I guess I send this series before reading it.
Let's use both, to support each others =)
>
>> build-clang:
>> <<: *native_build_job_definition
>> variables:
>>
>
> Reviewed-by: Thomas Huth <thuth@redhat.com>
Thanks!
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH-for-5.2 v2 4/4] travis-ci: Remove the --without-default-devices job
2020-11-04 8:43 [PATCH-for-5.2 v2 0/4] ci: Move --without-default-devices job from Travis to GitLab Philippe Mathieu-Daudé
` (2 preceding siblings ...)
2020-11-04 8:43 ` [PATCH-for-5.2 v2 3/4] gitlab-ci: Add a job to cover the --without-default-devices config Philippe Mathieu-Daudé
@ 2020-11-04 8:43 ` Philippe Mathieu-Daudé
3 siblings, 0 replies; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-04 8:43 UTC (permalink / raw)
To: qemu-devel
Cc: Fam Zheng, Thomas Huth, Daniel P . Berrange, Matthew Rosato,
David Hildenbrand, Philippe Mathieu-Daudé, Cornelia Huck,
Christian Schoenebeck, Greg Kurz, Wainer dos Santos Moschetta,
Halil Pasic, Christian Borntraeger, qemu-s390x, Paolo Bonzini,
Alex Bennée, Richard Henderson
We replicated the --without-default-devices job on GitLab-CI
in the previous commit. We can now remove it from Travis-CI.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
.travis.yml | 8 --------
1 file changed, 8 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index a3d78171cab..15d92291358 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -224,14 +224,6 @@ jobs:
- ${SRC_DIR}/scripts/travis/coverage-summary.sh
- # We manually include builds which we disable "make check" for
- - name: "GCC without-default-devices (softmmu)"
- env:
- - CONFIG="--without-default-devices --disable-user"
- - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
- - TEST_CMD=""
-
-
# 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] 9+ messages in thread