summaryrefslogtreecommitdiffstats
path: root/test/README.md
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-06-24 12:12:20 +0200
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-07-03 10:12:22 +0200
commite4522e1059a4ab32024277706f271200e0cb601b (patch)
tree20fc93e3331398a9152ce2862c18e3253d762ab4 /test/README.md
parentea4ee152a7aa022dd87f193cc6e16a7ffbfb455a (diff)
test/run_tests.pl: Enhance the semantics of HARNESS_VERBOSE_FAILURES (VF)
Make the improved semantics of VFO replace the previous VF and remove VFO Add warnings about overriding use of HARNESS_VERBOSE* variables Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12279)
Diffstat (limited to 'test/README.md')
-rw-r--r--test/README.md12
1 files changed, 4 insertions, 8 deletions
diff --git a/test/README.md b/test/README.md
index 76bf1b17aa..d5591dc00f 100644
--- a/test/README.md
+++ b/test/README.md
@@ -27,21 +27,17 @@ Full verbosity, showing full output of all successful and failed test cases
$ mms /macro=(V=1) test ! OpenVMS
$ nmake V=1 test # Windows
-Verbosity on test failure (`VERBOSE_FAILURE` or `VF`, Unix example shown):
+Verbosity on failed (sub-)tests only (`VERBOSE_FAILURE` or `VF`):
$ make test VF=1
-Verbosity on failed (sub-)tests only (`VERBOSE_FAILURES_ONLY` or `VFO`):
-
- $ make test VFO=1
-
Verbosity on failed (sub-)tests, in addition progress on succeeded (sub-)tests
-(`VERBOSE_FAILURES_PROGRESS` or `VFP`):
+(`VERBOSE_FAILURE_PROGRESS` or `VFP`):
$ make test VFP=1
If you want to run just one or a few specific tests, you can use
-the `make` variable `TESTS` to specify them, like this:
+the make variable TESTS to specify them, like this:
$ make TESTS='test_rsa test_dsa' test # Unix
$ mms/macro="TESTS=test_rsa test_dsa" test ! OpenVMS
@@ -50,7 +46,7 @@ the `make` variable `TESTS` to specify them, like this:
And of course, you can combine (Unix examples shown):
$ make test TESTS='test_rsa test_dsa' VF=1
- $ make test TESTS="test_cmp_*" VFO=1
+ $ make test TESTS="test_cmp_*" VFP=1
You can find the list of available tests like this: