summaryrefslogtreecommitdiff
path: root/NOTES.VALGRIND
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-06-23 08:38:24 +0200
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-06-28 21:10:52 +0200
commit9afbb681ecd433623fb39db2a110ec3351d271c7 (patch)
tree0e3bf6bdb58e656b23c32d06f4e7dfcfe15c00e4 /NOTES.VALGRIND
parent3a0b3cc9050c3dfb0b45bfc0eba3a4e53e801217 (diff)
downloadopenssl-new-9afbb681ecd433623fb39db2a110ec3351d271c7.tar.gz
INSTALL.md and NOTES.VALGRIND: Further cleanup of references and code/symbol quotation layout
Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> (Merged from https://github.com/openssl/openssl/pull/12232)
Diffstat (limited to 'NOTES.VALGRIND')
-rw-r--r--NOTES.VALGRIND8
1 files changed, 4 insertions, 4 deletions
diff --git a/NOTES.VALGRIND b/NOTES.VALGRIND
index 04b69f57f8..0ecca4f7dc 100644
--- a/NOTES.VALGRIND
+++ b/NOTES.VALGRIND
@@ -51,20 +51,20 @@ used to control what capabilities OpenSSL uses.
As of valgrind-3.15.0 on Linux/x86_64, instructions up to AVX2 are
supported. Setting the following disables instructions beyond AVX2:
- OPENSSL_ia32cap=":0"
+`OPENSSL_ia32cap=":0"`
This variable may need to be set to something different based on the
processor and Valgrind version you are running tests on. More information
may be found in [docs/man3/OPENSSL_ia32cap.pod](docs/man3/OPENSSL_ia32cap.pod).
Additional variables (such as `VERBOSE` and `TESTS`) are described in the
-file [test/README.md]/(test/README.md).
+file [test/README.md](test/README.md).
Example command line:
- make test EXE_SHELL="`/bin/pwd`/util/wrap.pl valgrind --error-exitcode=1 --leak-check=full -q" OPENSSL_ia32cap=":0"
+ $ make test EXE_SHELL="`/bin/pwd`/util/wrap.pl valgrind --error-exitcode=1 --leak-check=full -q" OPENSSL_ia32cap=":0"
If an error occurs, you can then run the specific test via the `TESTS`
variable with the VERBOSE option to gather additional information.
- make test VERBOSE=1 TESTS=test_test EXE_SHELL="`/bin/pwd`/util/wrap.pl valgrind --error-exitcode=1 --leak-check=full -q" OPENSSL_ia32cap=":0"
+ $ make test VERBOSE=1 TESTS=test_test EXE_SHELL="`/bin/pwd`/util/wrap.pl valgrind --error-exitcode=1 --leak-check=full -q" OPENSSL_ia32cap=":0"