aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-03-10 08:32:58 +0100
committerRichard Levitte <levitte@openssl.org>2017-03-10 19:12:44 +0100
commitd063132737c9064e9f57d041c3849282315ac445 (patch)
treec35c684387e340f198e0eb44e90cb5400534e30d /INSTALL
parentf282e954ecd00b8bd107a83bb50952647f29535a (diff)
downloadopenssl-d063132737c9064e9f57d041c3849282315ac445.tar.gz
Document how to select / deselect test group numbers
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2892)
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL21
1 files changed, 20 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index 64055ac27c..d741b9f5a0 100644
--- a/INSTALL
+++ b/INSTALL
@@ -915,7 +915,14 @@
-xxx Removes 'xxx' from the current set of tests. If this is the
first token in the list, the current set of tests is first
assigned the whole set of available tests, effectively making
- this token equivalent to TESTS="alltests -xxx"
+ this token equivalent to TESTS="alltests -xxx".
+ nn Adds the test group 'nn' (which is a number) to the current
+ set of tests.
+ -nn Removes the test group 'nn' from the current set of tests.
+ If this is the first token in the list, the current set of
+ tests is first assigned the whole set of available tests,
+ effectively making this token equivalent to
+ TESTS="alltests -xxx".
Also, all tokens except for "alltests" may have wildcards, such as *.
(on Unix and Windows, BSD style wildcards are supported, while on VMS,
@@ -934,6 +941,18 @@
$ make TESTS='test_ssl* -test_ssl_*' test
+ Example: Only test group 10:
+
+ $ make TESTS='10'
+
+ Example: All tests except the slow group (group 99):
+
+ $ make TESTS='-99'
+
+ Example: All tests in test groups 80 to 99 except for tests in group 90:
+
+ $ make TESTS='[89]? -90'
+
Note on multi-threading
-----------------------