From: Yonggang Luo Date: Mon, 7 Sep 2020 20:04:30 +0000 (+0800) Subject: meson: Disable test-char on msys2/mingw for fixing tests stuck X-Git-Tag: v5.2.0-rc0~109^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2d89880003b5324596e44d4743d14a3be70e392d;p=thirdparty%2Fqemu.git meson: Disable test-char on msys2/mingw for fixing tests stuck Signed-off-by: Yonggang Luo Message-Id: <20200907200432.2418-3-luoyonggang@gmail.com> Signed-off-by: Thomas Huth --- diff --git a/tests/meson.build b/tests/meson.build index dae8a77df14..82342a2f972 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -195,8 +195,13 @@ if have_system # are not runnable under TSan due to a known issue. # https://github.com/google/sanitizers/issues/1116 if 'CONFIG_TSAN' not in config_host + if 'CONFIG_POSIX' in config_host + tests += { + 'test-char': ['socket-helpers.c', qom, io, chardev] + } + endif + tests += { - 'test-char': ['socket-helpers.c', qom, io, chardev], 'test-qdev-global-props': [qom, hwcore, testqapi] } endif