diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-07-16 22:46:38 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-07-16 22:46:38 +0200 |
commit | 78dcfd15953d00c95a97424a3fc7ee631638ca56 (patch) | |
tree | 3e20b1560a1d12a63ffe2e7e0634f35de037f770 /src | |
parent | d9b39752f54536b590eb23e3225b08bc73d3ed7a (diff) |
selftest: added valgrind check and print warning
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/utils.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/utils.c b/src/utils.c index 5c7bf1b..c3884cd 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1052,10 +1052,11 @@ int selftest_minimal_requirements(void) if (buf[sizeof buf - 1] != 0) goto error; - if (getopt_used(OPT_RUNTEST)) { - N("%s", "Selftest success"); - exit(EXIT_SUCCESS); - } +#ifdef HAVE_VALGRIND + if (RUNNING_ON_VALGRIND) + W2("%s", "You are using valgrind, this is *ONLY* for debug reasons and may " + "affect your overall security! Be warned."); +#endif s = open(getopt_str(OPT_ROFILE), O_WRONLY|O_CREAT|O_TRUNC, 0); if (s < 0 && errno != EEXIST) @@ -1063,6 +1064,10 @@ int selftest_minimal_requirements(void) if (mkdir(getopt_str(OPT_RODIR), S_IRWXU) && errno != EEXIST) goto error; + if (getopt_used(OPT_RUNTEST)) { + N("%s", "Selftest success"); + exit(EXIT_SUCCESS); + } return 0; error: if (getopt_used(OPT_RUNTEST)) { |