From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45682) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fsQdD-0000ZJ-Qw for qemu-devel@nongnu.org; Wed, 22 Aug 2018 06:45:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fsQPP-0004tv-AF for qemu-devel@nongnu.org; Wed, 22 Aug 2018 06:30:42 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:43706 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fsQPP-0004tf-32 for qemu-devel@nongnu.org; Wed, 22 Aug 2018 06:30:39 -0400 References: <20180822095421.11765-1-quintela@redhat.com> <20180822095421.11765-8-quintela@redhat.com> From: Thomas Huth Message-ID: <0d3a215b-4916-b0a6-5654-5d64fcf6c996@redhat.com> Date: Wed, 22 Aug 2018 12:30:31 +0200 MIME-Version: 1.0 In-Reply-To: <20180822095421.11765-8-quintela@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 07/10] check: Only test boot-serial when sga is compiled in List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela , qemu-devel@nongnu.org Cc: lvivier@redhat.com, dgilbert@redhat.com, peterx@redhat.com, Paolo Bonzini , Gerd Hoffmann , "Michael S. Tsirkin" , Marcel Apfelbaum On 2018-08-22 11:54, Juan Quintela wrote: > This is only for x86* architecture. > > Signed-off-by: Juan Quintela > --- > tests/Makefile.include | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/Makefile.include b/tests/Makefile.include > index 116e93cdb6..d524e1bdeb 100644 > --- a/tests/Makefile.include > +++ b/tests/Makefile.include > @@ -257,7 +257,7 @@ check-qtest-i386-y += tests/hd-geo-test$(EXESUF) > gcov-files-i386-y += hw/block/hd-geometry.c > check-qtest-i386-y += tests/boot-order-test$(EXESUF) > check-qtest-i386-y += tests/bios-tables-test$(EXESUF) > -check-qtest-i386-y += tests/boot-serial-test$(EXESUF) > +check-qtest-i386-$(CONFIG_SGA) += tests/boot-serial-test$(EXESUF) Reviewed-by: Thomas Huth Off-topic: I wonder whether we could even deprecate the SGA device nowadays, since the main seabios now can redirect the console to the serial port, too? Thomas