diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2016-05-08 14:09:56 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2016-05-09 15:08:25 +0200 |
commit | be6bdab6f8a3c71a1bc54fd1c9b278398328ab99 (patch) | |
tree | 76b40a524928d15b9fc0c1dcb4b1dfafbd53d7fa /INSTALL | |
parent | Missing credit in CHANGES (diff) | |
download | openssl-be6bdab6f8a3c71a1bc54fd1c9b278398328ab99.tar.xz openssl-be6bdab6f8a3c71a1bc54fd1c9b278398328ab99.zip |
Recognise VERBOSE and V as well as HARNESS_VERBOSE
PR#4462
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -493,13 +493,12 @@ malfunction with Perl). You may want increased verbosity, that can be accomplished like this: - $ HARNESS_VERBOSE=yes make test # Unix + $ make VERBOSE=1 test # Unix - $ DEFINE HARNESS_VERBOSE YES + $ DEFINE VERBOSE 1 $ mms test ! OpenVMS - $ set HARNESS_VERBOSE=yes - $ nmake test # Windows + $ nmake VERBOSE=1 test # Windows If you want to run just one or a few specific tests, you can use the make variable TESTS to specify them, like this: @@ -510,7 +509,7 @@ And of course, you can combine (Unix example shown): - $ HARNESS_VERBOSE=yes make TESTS='test_rsa test_dsa' test + $ make VERBOSE=1 TESTS='test_rsa test_dsa' test You can find the list of available tests like this: |