Hi, On Sat, 22 Nov 2025 at 01:16, Andrew Dunstan <[email protected]> wrote: > > Committed
Here is a small follow-up commit for documenting this feature. -- Regards, Nazir Bilal Yavuz Microsoft
From f1107df597594e48fcb0c3e596e4c9e26287367b Mon Sep 17 00:00:00 2001 From: Nazir Bilal Yavuz <[email protected]> Date: Thu, 27 Nov 2025 13:15:57 +0300 Subject: [PATCH v1] Document Meson equivalents for running subset of regression tests Extend the regression testing documentation to include the Meson-based commands for running a subset of tests. --- doc/src/sgml/regress.sgml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index fd1e142d559..d61322dedac 100644 --- a/doc/src/sgml/regress.sgml +++ b/doc/src/sgml/regress.sgml @@ -132,6 +132,9 @@ make installcheck-parallel A subset of the regression tests can be run with the command <literal>make check-tests TESTS="boolean char"</literal> or <literal>make installcheck-tests TESTS="boolean char"</literal>. + When using Meson build system, the equivalent commands are + <literal>TESTS="boolean char" meson test --suite regress</literal> or + <literal>TESTS="boolean char" meson test --suite regress-running</literal>. Note that sometimes tests have dependencies on objects created by other tests, which can cause unexpected failures. </para> -- 2.51.0
