GHA/http3-linux: set minimum number of runtest tests

Tailored for each job with a relatively tight limits. Also with no
tolerance in valgrind tests: 4 of the 4 has to be run.

Based on Test Clutch feature matrix which displays the minimum and
actual number of tests:
https://testclutch.curl.se/static/reports/feature-matrix.html

Also:
- runtests.pl: include total number of tests in the error message shown
  when the limit was not met.

Assisted-by: Dan Fandrich
Follow-up to 3f1cd809ee #19942

Closes #20050
This commit is contained in:
Viktor Szakats 2025-12-20 15:00:49 +01:00
parent 969351bb1e
commit 424cef6733
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 14 additions and 3 deletions

View file

@ -3344,7 +3344,7 @@ else {
if($mintotal) {
if($total < $mintotal) {
logmsg "TESTFAIL: number of tests run was below the minimum of: $mintotal\n";
logmsg "TESTFAIL: number of tests run ($total) was below the minimum of: $mintotal\n";
exit 1;
}
else {