qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3 04/12] tests/qtest: Don't build virtio-serial-test.c if de


From: Thomas Huth
Subject: Re: [PATCH v3 04/12] tests/qtest: Don't build virtio-serial-test.c if device not present
Date: Tue, 14 Feb 2023 08:57:39 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.13.0

On 13/02/2023 22.07, Fabiano Rosas wrote:
The virtconsole device might not be present in the QEMU build that is
being tested.

Signed-off-by: Fabiano Rosas <farosas@suse.de>
---
  tests/qtest/meson.build | 6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
index 5c8b031ce0..84cd07bbb9 100644
--- a/tests/qtest/meson.build
+++ b/tests/qtest/meson.build
@@ -255,10 +255,14 @@ qos_test_ss.add(
    'virtio-net-test.c',
    'virtio-rng-test.c',
    'virtio-scsi-test.c',
-  'virtio-serial-test.c',
    'virtio-iommu-test.c',
    'vmxnet3-test.c',
  )
+
+if config_all_devices.has_key('CONFIG_VIRTIO_SERIAL')
+  qos_test_ss.add(files('virtio-serial-test.c'))
+endif
+
  if config_host.has_key('CONFIG_POSIX')
    qos_test_ss.add(files('e1000e-test.c'))
  endif

Reviewed-by: Thomas Huth <thuth@redhat.com>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]