aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-01-15 23:36:42 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2022-02-01 09:05:26 +0100
commitfc661c35a20a7cc85f76e5e0c502700f42e27cf2 (patch)
tree55fdc3213419420b3fa7c9c2480f6819d377cc6e /docs/markdown/snippets
parent3f3439522c66de4620f36f804bdf16c5d0dc9ce1 (diff)
downloadmeson-fc661c35a20a7cc85f76e5e0c502700f42e27cf2.zip
meson-fc661c35a20a7cc85f76e5e0c502700f42e27cf2.tar.gz
meson-fc661c35a20a7cc85f76e5e0c502700f42e27cf2.tar.bz2
interpreter: support for forcibly verbose logging of some tests
Add a new keyword argument to test() and benchmark(), completing the implementation of the feature. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r--docs/markdown/snippets/test-verbose.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/snippets/test-verbose.md b/docs/markdown/snippets/test-verbose.md
new file mode 100644
index 0000000..6d9aa0f
--- /dev/null
+++ b/docs/markdown/snippets/test-verbose.md
@@ -0,0 +1,6 @@
+## New keyword argument `verbose` for tests and benchmarks
+
+The new keyword argument `verbose` can be used to mark tests and benchmarks
+that must always be logged verbosely on the console. This is particularly
+useful for long-running tests, or when a single Meson test() is wrapping
+an external test harness.