diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-04-20 17:26:12 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-04-21 17:09:09 +0400 |
commit | a7bd942c900ff83b25ccef68629b34831db03a59 (patch) | |
tree | 1cb98cc95f2c09d100ee73449e0143918f48df40 /tests/unit/meson.build | |
parent | c213ef9a66b0774771cb0cc04c9b3b019bb508db (diff) | |
download | qemu-a7bd942c900ff83b25ccef68629b34831db03a59.zip qemu-a7bd942c900ff83b25ccef68629b34831db03a59.tar.gz qemu-a7bd942c900ff83b25ccef68629b34831db03a59.tar.bz2 |
tests: run-time skip test-qga if TSAN is enabled
This allows to make sure the test is still built, and gives more
accurate report details.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20220420132624.2439741-30-marcandre.lureau@redhat.com>
Diffstat (limited to 'tests/unit/meson.build')
-rw-r--r-- | tests/unit/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/meson.build b/tests/unit/meson.build index 026e39f..ab01e00 100644 --- a/tests/unit/meson.build +++ b/tests/unit/meson.build @@ -153,7 +153,7 @@ if have_system endif endif -if have_ga and targetos == 'linux' and 'CONFIG_TSAN' not in config_host +if have_ga and targetos == 'linux' tests += {'test-qga': ['../qtest/libqtest.c']} test_deps += {'test-qga': qga} endif |