gnu: cmake-build: Retry failed tests.

* guix/build-system/cmake.scm (cmake-build, cmake-cross-build),
* guix/build-system/qt.scm (qt-build, qt-cross-build): Add
test-repeat-until-pass? and test-repeat-until-pass-count fields.
* guix/build/cmake-build-system.scm (check): Add and use new fields.
* doc/guix.texi: Document new parameters.

Change-Id: I046dfc86a18fb2a2be4ae362c1226c2f8cab129c
This commit is contained in:
Greg Hogan 2025-07-11 19:04:53 +00:00
parent 8b53cfe1c1
commit f361e7fa4a
No known key found for this signature in database
GPG key ID: EF6EB27413CFEEF3
4 changed files with 34 additions and 1 deletions

View file

@ -9728,6 +9728,16 @@ responsible for writing the input files for the native build system.
@item #:test-exclude
Tests matching this regular expression are excluded from testing by
@url{https://cmake.org/cmake/help/latest/manual/ctest.1.html, ctest}.
@item #:test-repeat-until-pass?
Directs @url{https://cmake.org/cmake/help/latest/manual/ctest.1.html, ctest} to
@url{https://cmake.org/cmake/help/latest/manual/ctest.1.html#cmdoption-ctest-repeat, repeat}
failed tests up to @code{#:test-repeat-until-pass-count} times and is enabled by
default.
@item #:test-repeat-until-pass-count
When @code{#:test-repeat-until-pass?} is enabled this parameter sets the maximum
number of failures for each test. The default is @code{5}.
@end table
@end defvar