summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNicola Tuveri <nic.tuv@gmail.com>2020-06-30 15:56:14 +0300
committerNicola Tuveri <nic.tuv@gmail.com>2020-07-02 16:48:15 +0300
commit9576c498ca8793261adc20e9dca9cf419617cd3e (patch)
tree796852e417653e3b6c7c6d46380fd70fc4b9f387 /test
parentaf3e8c298ab9fcee47d2d4a54f8be084990f9382 (diff)
[test/README.md] minor fix of examples missing the test target
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/12326)
Diffstat (limited to 'test')
-rw-r--r--test/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/README.md b/test/README.md
index 5c80d64762..76bf1b17aa 100644
--- a/test/README.md
+++ b/test/README.md
@@ -114,15 +114,15 @@ starting with "test_ssl_":
Run only test group 10:
- $ make TESTS='10'
+ $ make TESTS='10' test
Run all tests except the slow group (group 99):
- $ make TESTS='-99'
+ $ make TESTS='-99' test
Run all tests in test groups 80 to 99 except for tests in group 90:
- $ make TESTS='[89]? -90'
+ $ make TESTS='[89]? -90' test
To stochastically verify that the algorithm that produces uniformly distributed
random numbers is operating correctly (with a false positive rate of 0.01%):