From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YXYdF-00023Z-UN for qemu-devel@nongnu.org; Mon, 16 Mar 2015 13:16:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YXYdA-00086R-Qj for qemu-devel@nongnu.org; Mon, 16 Mar 2015 13:16:49 -0400 Received: from mail-wg0-x22c.google.com ([2a00:1450:400c:c00::22c]:34385) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YXYdA-00086F-Jt for qemu-devel@nongnu.org; Mon, 16 Mar 2015 13:16:44 -0400 Received: by wggv3 with SMTP id v3so45534157wgg.1 for ; Mon, 16 Mar 2015 10:16:44 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <55070FF8.60707@redhat.com> Date: Mon, 16 Mar 2015 18:16:40 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1426240033-24673-1-git-send-email-kraxel@redhat.com> <1426240033-24673-10-git-send-email-kraxel@redhat.com> In-Reply-To: <1426240033-24673-10-git-send-email-kraxel@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 8/9] virtio-gpu: add to display-vga test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann , qemu-devel@nongnu.org On 13/03/2015 10:47, Gerd Hoffmann wrote: > Signed-off-by: Gerd Hoffmann > --- > tests/Makefile | 3 +++ > tests/display-vga-test.c | 18 ++++++++++++++++++ > 2 files changed, 21 insertions(+) > > diff --git a/tests/Makefile b/tests/Makefile > index 588f438..55ad89f 100644 > --- a/tests/Makefile > +++ b/tests/Makefile > @@ -133,6 +133,9 @@ check-qtest-pci-y += tests/display-vga-test$(EXESUF) > gcov-files-pci-y += hw/display/vga.c > gcov-files-pci-y += hw/display/cirrus_vga.c > gcov-files-pci-y += hw/display/vga-pci.c > +gcov-files-pci-y += hw/display/virtio-gpu.c > +gcov-files-pci-y += hw/display/virtio-gpu-pci.c > +gcov-files-pci-y += hw/display/virtio-vga.c > check-qtest-pci-y += tests/intel-hda-test$(EXESUF) > gcov-files-pci-y += hw/audio/intel-hda.c hw/audio/hda-codec.c > > diff --git a/tests/display-vga-test.c b/tests/display-vga-test.c > index 17f5910..cd0b873 100644 > --- a/tests/display-vga-test.c > +++ b/tests/display-vga-test.c > @@ -36,6 +36,20 @@ static void pci_multihead(void) > qtest_end(); > } > > +#ifdef CONFIG_VIRTIO_GPU > +static void pci_virtio_gpu(void) > +{ > + qtest_start("-vga none -device virtio-gpu-pci"); > + qtest_end(); > +} > + > +static void pci_virtio_vga(void) > +{ > + qtest_start("-vga none -device virtio-vga"); > + qtest_end(); > +} > +#endif > + > int main(int argc, char **argv) > { > int ret; > @@ -46,6 +60,10 @@ int main(int argc, char **argv) > qtest_add_func("/display/pci/stdvga", pci_stdvga); > qtest_add_func("/display/pci/secondary", pci_secondary); > qtest_add_func("/display/pci/multihead", pci_multihead); > +#ifdef CONFIG_VIRTIO_GPU > + qtest_add_func("/display/pci/virtio-gpu", pci_virtio_gpu); > + qtest_add_func("/display/pci/virtio-vga", pci_virtio_vga); > +#endif > ret = g_test_run(); > > return ret; > Which config file is defining this? Paolo