summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Mack <github@zonque.org>2016-01-14 10:35:45 +0100
committerDaniel Mack <github@zonque.org>2016-01-14 10:35:45 +0100
commitca9ec350f39096f19d6672e38ca2419877627a4b (patch)
treee230757906fdec8c68c93df4805b4f54e15a629c /test
parent8ec46f55e5d615696b013e6325b19af441fdd187 (diff)
parenta2fbff31c9c319da51528f85ae97d019f1e61a86 (diff)
Merge pull request #2320 from evverx/fix-memory-leak-on-reload
Fix memory leak on daemon-reload
Diffstat (limited to 'test')
-rw-r--r--test/test-functions19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/test-functions b/test/test-functions
index cf8755acd4..80d048c0d2 100644
--- a/test/test-functions
+++ b/test/test-functions
@@ -119,6 +119,25 @@ setup_basic_environment() {
generate_module_dependencies
}
+install_valgrind() {
+ if ! type -p valgrind; then
+ dfatal "Failed to install valgrind"
+ exit 1
+ fi
+
+ local _valgrind_bins=$(strace -e execve valgrind /bin/true 2>&1 >/dev/null | perl -lne 'print $1 if /^execve\("([^"]+)"/')
+ dracut_install $_valgrind_bins
+
+ local _valgrind_libs=$(LD_DEBUG=files valgrind /bin/true 2>&1 >/dev/null | perl -lne 'print $1 if m{calling init: (/.*vgpreload_.*)}')
+ dracut_install $_valgrind_libs
+
+ local _valgrind_dbg_and_supp=$(
+ strace -e open valgrind /bin/true 2>&1 >/dev/null |
+ perl -lne 'if (my ($fname) = /^open\("([^"]+).*= (?!-)\d+/) { print $fname if $fname =~ /debug|\.supp$/ }'
+ )
+ dracut_install $_valgrind_dbg_and_supp
+}
+
install_dmevent() {
instmods dm_crypt =crypto
type -P dmeventd >/dev/null && dracut_install dmeventd