summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-02-11 06:15:12 -0500
committerPaolo Bonzini <pbonzini@redhat.com>2021-12-23 10:06:19 +0100
commit3d2f73ef75e25ba850aff4fcccb36d50137afd0f (patch)
tree419f11d8d2085b2f8f67a2bc2ddf070287ffd43e /tests
parent2bf40d0841b942e7ba12953d515e62a436f0af84 (diff)
downloadqemu-3d2f73ef75e25ba850aff4fcccb36d50137afd0f.zip
build: use "meson test" as the test harness
"meson test" starting with version 0.57 is just as capable and easy to use as QEMU's own TAP driver. All existing options for "make check" work. The only required code change involves how to mark "slow" tests; they need to belong to an additional "slow" suite. The rules for .tap output are replaced by JUnit XML; GitLab is able to parse that output and present it in the CI pipeline report. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/fp/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fp/meson.build b/tests/fp/meson.build
index 07e2cdc8d2..59776a00a7 100644
--- a/tests/fp/meson.build
+++ b/tests/fp/meson.build
@@ -622,7 +622,7 @@ test('fp-test-mulAdd', fptest,
# no fptest_rounding_args
args: fptest_args +
['f16_mulAdd', 'f32_mulAdd', 'f64_mulAdd', 'f128_mulAdd'],
- suite: ['softfloat-slow', 'softfloat-ops-slow'], timeout: 90)
+ suite: ['softfloat-slow', 'softfloat-ops-slow', 'slow'], timeout: 90)
fpbench = executable(
'fp-bench',