]> Git Repo - qemu.git/commitdiff
tests: Skip POSIX-only tests on Windows
authorStefan Hajnoczi <[email protected]>
Fri, 28 Mar 2014 09:55:53 +0000 (10:55 +0100)
committerAndreas Färber <[email protected]>
Mon, 31 Mar 2014 20:35:02 +0000 (22:35 +0200)
test-rfifolock and test-vmstate only build on POSIX hosts.  Exclude them
if building for Windows.

Signed-off-by: Stefan Hajnoczi <[email protected]>
Reviewed-by: Stefan Weil <[email protected]>
Signed-off-by: Andreas Färber <[email protected]>
tests/Makefile

index 2d021fb16d4e05b9c0eca31a23fb273c3dd4932d..ef286e79c99763359c2ce7b74e2b0eff9ef80459 100644 (file)
@@ -35,7 +35,7 @@ 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-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
 
This page took 0.029694 seconds and 4 git commands to generate.