X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=INSTALL;h=d741b9f5a02cd8b5e0c87c18a9f52d001687b880;hb=d063132737c9064e9f57d041c3849282315ac445;hp=fa50091f84989b9385917cd68497fda2e23d4ca9;hpb=5ae5dc96610f0a598dac9d2f267b5c0ddd77b2e4;p=openssl.git diff --git a/INSTALL b/INSTALL index fa50091f84..d741b9f5a0 100644 --- a/INSTALL +++ b/INSTALL @@ -18,6 +18,7 @@ For additional platform specific requirements, solutions to specific issues and other details, please read one of these: + * NOTES.UNIX (any supported Unix like system) * NOTES.VMS (OpenVMS) * NOTES.WIN (any supported Windows) * NOTES.DJGPP (DOS platform with DJGPP) @@ -494,8 +495,9 @@ Build without support for the specified algorithm, where is one of: bf, blake2, camellia, cast, chacha, cmac, des, dh, dsa, ecdh, ecdsa, idea, md4, mdc2, ocb, poly1305, - rc2, rc4, rmd160, scrypt, seed or whirlpool. The "ripemd" - algorithm is deprecated and if used is synonymous with rmd160. + rc2, rc4, rmd160, scrypt, seed, siphash or whirlpool. The + "ripemd" algorithm is deprecated and if used is synonymous + with rmd160. -Dxxx, -lxxx, -Lxxx, -fxxx, -mXXX, -Kxxx These system specific options will be passed through to the @@ -913,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, @@ -932,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 -----------------------