From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45733) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxeST-0005ET-VA for qemu-devel@nongnu.org; Thu, 19 Jun 2014 11:41:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WxeSO-00010w-5n for qemu-devel@nongnu.org; Thu, 19 Jun 2014 11:41:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20166) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxeSN-00010q-Sg for qemu-devel@nongnu.org; Thu, 19 Jun 2014 11:40:56 -0400 Date: Thu, 19 Jun 2014 18:41:20 +0300 From: "Michael S. Tsirkin" Message-ID: <20140619154120.GA15156@redhat.com> References: <20140619150355.10499.53297.stgit@3820> <20140619150856.10499.93506.stgit@3820> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140619150856.10499.93506.stgit@3820> Subject: Re: [Qemu-devel] [PATCH 6/6] qtest: enable vhost-user-test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Nikolay Nikolaev Cc: snabb-devel@googlegroups.com, qemu-devel@nongnu.org, tech@virtualopensystems.com On Thu, Jun 19, 2014 at 06:09:05PM +0300, Nikolay Nikolaev wrote: > Also use qtest-obj-y to get the right library order. > > Signed-off-by: Nikolay Nikolaev Seems to still break mingw build. Please build-test it. > --- > tests/Makefile | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/Makefile b/tests/Makefile > index 4caf7de..db4accf 100644 > --- a/tests/Makefile > +++ b/tests/Makefile > @@ -156,7 +156,7 @@ gcov-files-i386-y += hw/usb/hcd-ehci.c > gcov-files-i386-y += hw/usb/hcd-uhci.c > gcov-files-i386-y += hw/usb/dev-hid.c > gcov-files-i386-y += hw/usb/dev-storage.c > -#check-qtest-i386-y += tests/vhost-user-test$(EXESUF) > +check-qtest-i386-y += tests/vhost-user-test$(EXESUF) > check-qtest-x86_64-y = $(check-qtest-i386-y) > gcov-files-i386-y += i386-softmmu/hw/timer/mc146818rtc.c > gcov-files-x86_64-y = $(subst i386-softmmu/,x86_64-softmmu/,$(gcov-files-i386-y)) > @@ -323,11 +323,11 @@ tests/es1370-test$(EXESUF): tests/es1370-test.o > tests/intel-hda-test$(EXESUF): tests/intel-hda-test.o > tests/ioh3420-test$(EXESUF): tests/ioh3420-test.o > tests/usb-hcd-ehci-test$(EXESUF): tests/usb-hcd-ehci-test.o $(libqos-pc-obj-y) > -tests/vhost-user-test$(EXESUF): tests/vhost-user-test.o qemu-char.o qemu-timer.o libqemuutil.a libqemustub.a > +tests/vhost-user-test$(EXESUF): tests/vhost-user-test.o qemu-char.o qemu-timer.o $(qtest-obj-y) > tests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o > tests/test-qemu-opts$(EXESUF): tests/test-qemu-opts.o libqemuutil.a libqemustub.a > > -#LIBS+= -lutil > +LIBS+= -lutil > > # QTest rules >