diff mbox series

[1/2] tests: try to disable make check blocker for msys2

Message ID 20200903112423.1765-2-luoyonggang@gmail.com
State New
Headers show
Series [1/2] tests: try to disable make check blocker for msys2 | expand

Commit Message

罗勇刚(Yonggang Luo) Sept. 3, 2020, 11:24 a.m. UTC
tests/test-char are stuck forever on msys2, disable it first

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
---
 tests/Makefile.include | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/tests/Makefile.include b/tests/Makefile.include
index 497f1f21ff..c645e8972a 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -130,7 +130,9 @@  ifndef CONFIG_TSAN
 # Some tests: test-char, test-qdev-global-props, and test-qga,
 # are not runnable under TSan due to a known issue.
 # https://github.com/google/sanitizers/issues/1116
+ifeq ($(CONFIG_POSIX),y)
 check-unit-$(CONFIG_SOFTMMU) += tests/test-char$(EXESUF)
+endif
 check-unit-$(CONFIG_SOFTMMU) += tests/test-qdev-global-props$(EXESUF)
 ifeq ($(CONFIG_GUEST_AGENT),y)
 check-unit-$(call land,$(CONFIG_LINUX),$(CONFIG_VIRTIO_SERIAL)) += tests/test-qga$(EXESUF)