From f1107df597594e48fcb0c3e596e4c9e26287367b Mon Sep 17 00:00:00 2001 From: Nazir Bilal Yavuz 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 make check-tests TESTS="boolean char" or make installcheck-tests TESTS="boolean char". + When using Meson build system, the equivalent commands are + TESTS="boolean char" meson test --suite regress or + TESTS="boolean char" meson test --suite regress-running. Note that sometimes tests have dependencies on objects created by other tests, which can cause unexpected failures. -- 2.51.0