summaryrefslogtreecommitdiff
path: root/NOTES.VALGRIND
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-02-18 08:25:06 +0100
committerRichard Levitte <levitte@openssl.org>2020-02-27 08:49:14 +0100
commit30a4cda5e0c67b4e77da4f21b7c5f27991d3367a (patch)
treefe0b70dcd200fb870adda72f6fac809d525a4417 /NOTES.VALGRIND
parentc3845ceba84aab9ddeb43f043549238fd10de63b (diff)
downloadopenssl-new-30a4cda5e0c67b4e77da4f21b7c5f27991d3367a.tar.gz
Replace util/shlib_wrap.sh with util/wrap.pl in diverse docs
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/11110)
Diffstat (limited to 'NOTES.VALGRIND')
-rw-r--r--NOTES.VALGRIND12
1 files changed, 6 insertions, 6 deletions
diff --git a/NOTES.VALGRIND b/NOTES.VALGRIND
index f128927c1a..afbb71e4ae 100644
--- a/NOTES.VALGRIND
+++ b/NOTES.VALGRIND
@@ -28,11 +28,11 @@ Test behavior can be modified by adjusting environment variables.
EXE_SHELL
This variable is used to specify the shell used to execute OpenSSL test
-programs. The default program (util/shlib_wrap.sh) initializes the
-environment to allow programs to find shared libraries. The variable can
-be modified to specify a different executable environment.
+programs. The default wrapper (util/wrap.pl) initializes the environment
+to allow programs to find shared libraries. The variable can be modified
+to specify a different executable environment.
- EXE_SHELL="`/bin/pwd`/util/shlib_wrap.sh valgrind --error-exitcode=1 --leak-check=full -q"
+ EXE_SHELL="`/bin/pwd`/util/wrap.pl valgrind --error-exitcode=1 --leak-check=full -q"
This will start up Valgrind with the default checker (memcheck).
The --error-exitcode=1 option specifies that Valgrind should exit with an
@@ -62,9 +62,9 @@ INSTALL file in the root of the OpenSSL source tree.
Example command line:
- make test EXE_SHELL="`/bin/pwd`/util/shlib_wrap.sh 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/shlib_wrap.sh 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"