TEST-SUITE.md: correct the man page's path

Closes #19586
This commit is contained in:
Daniel Stenberg 2025-11-18 09:22:24 +01:00
parent a41cea7d67
commit 1cbe510d8b
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -23,22 +23,24 @@ SPDX-License-Identifier: curl
make test TFLAGS="-j10"
"make test" builds the test suite support code and invokes the 'runtests.pl'
perl script to run all the tests. The value of `TFLAGS` is passed
directly to 'runtests.pl'.
perl script to run all the tests. The value of `TFLAGS` is passed directly
to 'runtests.pl'.
When you run tests via make, the flags `-a` and `-s` are passed, meaning
to continue running tests even after one fails, and to emit short output.
When you run tests via make, the flags `-a` and `-s` are passed, meaning to
continue running tests even after one fails, and to emit short output.
If you would like to not use those flags, you can run 'runtests.pl' directly.
You must `chdir` into the tests directory, then you can run it like so:
If you would like to not use those flags, you can run 'runtests.pl'
directly. You must `chdir` into the tests directory, then you can run it
like so:
./runtests.pl 303 410
You must have run `make test` at least once first to build the support code.
To see what flags are available for runtests.pl, and what output it emits, run:
To see what flags are available for runtests.pl, and what output it emits,
run:
man ./tests/runtests.1
man ./docs/runtests.1
After a test fails, examine the tests/log directory for stdout, stderr, and
output from the servers used in the test.