From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WT8sk-0006Nf-0L for qemu-devel@nongnu.org; Thu, 27 Mar 2014 07:54:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WT8se-0007V9-Kd for qemu-devel@nongnu.org; Thu, 27 Mar 2014 07:54:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27414) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WT8se-0007UZ-Ad for qemu-devel@nongnu.org; Thu, 27 Mar 2014 07:53:56 -0400 Message-ID: <5334114D.2040001@redhat.com> Date: Thu, 27 Mar 2014 12:53:49 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1395918686-27043-1-git-send-email-stefanha@redhat.com> <1395918686-27043-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1395918686-27043-2-git-send-email-stefanha@redhat.com> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/2] tests: skip POSIX-only tests on Windows List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi , qemu-devel@nongnu.org Cc: Stefan Weil , Andreas Faerber Il 27/03/2014 12:11, Stefan Hajnoczi ha scritto: > test-aio, test-rfifolock, and test-vmstate only build on POSIX hosts. test-aio should build on Win32. Can be fixed in 2.1 though. Paolo > Exclude them if building for Windows. > > Signed-off-by: Stefan Hajnoczi > --- > tests/Makefile | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/Makefile b/tests/Makefile > index 2d021fb..803c8e6 100644 > --- a/tests/Makefile > +++ b/tests/Makefile > @@ -34,8 +34,8 @@ gcov-files-test-coroutine-y = coroutine-$(CONFIG_COROUTINE_BACKEND).c > check-unit-y += tests/test-visitor-serialization$(EXESUF) > check-unit-y += tests/test-iov$(EXESUF) > gcov-files-test-iov-y = util/iov.c > -check-unit-y += tests/test-aio$(EXESUF) > -check-unit-y += tests/test-rfifolock$(EXESUF) > +check-unit-$(CONFIG_POSIX) += tests/test-aio$(EXESUF) > +check-unit-$(CONFIG_POSIX) += tests/test-rfifolock$(EXESUF) > check-unit-y += tests/test-throttle$(EXESUF) > gcov-files-test-aio-$(CONFIG_WIN32) = aio-win32.c > gcov-files-test-aio-$(CONFIG_POSIX) = aio-posix.c > @@ -59,7 +59,7 @@ check-unit-y += tests/test-bitops$(EXESUF) > check-unit-y += tests/test-qdev-global-props$(EXESUF) > check-unit-y += tests/check-qom-interface$(EXESUF) > gcov-files-check-qom-interface-y = qom/object.c > -check-unit-y += tests/test-vmstate$(EXESUF) > +check-unit-$(CONFIG_POSIX) += tests/test-vmstate$(EXESUF) > > check-block-$(CONFIG_POSIX) += tests/qemu-iotests-quick.sh > >