From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50781) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WTHrx-00044l-HU for qemu-devel@nongnu.org; Thu, 27 Mar 2014 17:29:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WTHrs-00024Y-7o for qemu-devel@nongnu.org; Thu, 27 Mar 2014 17:29:49 -0400 Received: from v220110690675601.yourvserver.net ([37.221.199.173]:43067) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WTHrs-00024D-2X for qemu-devel@nongnu.org; Thu, 27 Mar 2014 17:29:44 -0400 Message-ID: <5334983A.9080409@weilnetz.de> Date: Thu, 27 Mar 2014 22:29:30 +0100 From: Stefan Weil MIME-Version: 1.0 References: <1395930496-32284-1-git-send-email-stefanha@redhat.com> <1395930496-32284-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1395930496-32284-2-git-send-email-stefanha@redhat.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 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: Paolo Bonzini , Andreas Faerber Am 27.03.2014 15:28, schrieb Stefan Hajnoczi: > test-aio, test-rfifolock, and test-vmstate only build on POSIX hosts. > 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 Hi Stefan, can you add http://repo.or.cz/w/qemu/ar7.git/patch/1df736569169f20ae27a62ecd786a61fbd43d7cd to your series instead of removing test-aio for Windows? For the rest: Reviewed-by: Stefan Weil