Lines Matching +full:valgrind +full:- +full:out
1 Notes on Valgrind
4 Valgrind is a test harness that includes many tools such as memcheck,
6 run by Valgrind is memcheck. There are other tools available, but this
9 Valgrind runs programs in a virtual machine, this means OpenSSL unit
10 tests run under Valgrind will take longer than normal.
13 ------------
15 1. Platform supported by Valgrind
16 See <http://valgrind.org/info/platforms.html>
17 2. Valgrind installed on the platform
18 See <http://valgrind.org/downloads/current.html>
23 -------------
35 "`/bin/pwd`/util/wrap.pl valgrind --error-exitcode=1 --leak-check=full -q"
37 This will start up Valgrind with the default checker (`memcheck`).
38 The `--error-exitcode=1` option specifies that Valgrind should exit with an
40 The `--leak-check=full` option specifies extensive memory checking.
41 The `-q` option prints only error messages.
42 Additional Valgrind options may be added to the `EXE_SHELL` variable.
46 This variable controls the processor-specific code on Intel processors.
47 By default, OpenSSL will attempt to figure out the capabilities of a
51 As of valgrind-3.15.0 on Linux/x86_64, instructions up to AVX2 are
57 processor and Valgrind version you are running tests on. More information
65 $ make test EXE_SHELL="`/bin/pwd`/util/wrap.pl valgrind --error-exitcode=1 \
66 --leak-check=full -q" OPENSSL_ia32cap=":0"
72 valgrind --error-exitcode=1 --leak-check=full -q" OPENSSL_ia32cap=":0"